Adding a class is easy. Just make up some descriptive non-reserved name for your class, for example:
Code:
.activLight {
color:white;
background-color:navy;
}
That's the easy part. Applying it to a particular link is easy too:
HTML Code:
<a class="activLight" href="whatever.htm">Whatever</a>
If each page is separate and the activLight class is to be applied specifically on the basis of the page you are on, then there is nothing to else worry about. The only tricky part (and this can vary but, really isn't all that hard) is if you are using PHP, asp or some other sort of method that uses the same code for several pages. Then you have to come up with a method for assigning this new class only as desired.
Bookmarks