Forum Moderators: not2easy
If you don't mind having your navigation code a little different in different sections, you can give the link you want displayed differently an id and then feed it a different rule from the stylesheet. For example:
#title li a {padding: 3px 7px; background-color: #99b6bb; }
#title a:link {color: #2b545d; text-decoration: none; }
#title a:visited {color: #81651e; text-decoration: none; }
#title a:hover {color: #ec4a28; text-decoration: none; }
#title a:active {color: #fa8; text-decoration: none; }
/* this is the rule for the sectional link */
#title li a#sec {color: #fff; }
So the html for each page has one link with an id="sec"
Adam