G'day

   <div class="topl"><a href="#header">Top of page</a></div> and related
CSS, as follows:

  a.topl {
    color: #660;
    text-decoration: none;}

The reason this doesn't do anything is that a.topl means an anchor with the
class "topl", which is not what you have above (you applied the class to the
div, not the anchor).

I think your intention is as follows:

div.topl a {
    color: #660;
    text-decoration: none;
}

Regards
--
Bert Doorn, Better Web Design
www.bwdzine.com
Fast-loading, user-friendly websites

******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to