Hi Craig,

The easiest way to select the current page in navigation is to give  
each list item a unique ID, and to give the body tag the class of the  
section you're on:

...
<body class="contactus">
        <ul id="navigation">
                <li id="contactus">Contact Us</li>
                <li id="sitemap">Site Map</li>
                ...
        </ul>
...

Then define a stylesheet rule as such:

.sitemap #sitemap,
.contactus #contactus {
        /* Selected list item */
}


Hope that helps!

- Kit
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to