On 10/08/06, Spencer Ivery <[EMAIL PROTECTED]> wrote: > Currently, I am trying to make pseudo-class selector e.g., .class a:active > work on a page where the selected navigation link remains highlighted in > a different color.
:active means "While being activated" (e.g. while the mouse is pointing to the link and the mouse button is being pressed) CSS 2 can't determine that the current URL goes to the URL in an href attribute. Your best option is to just change the markup on the page. This is fairly easy to do programatically, and if you are going to do that, then you can make the element not be a link at all (since recursive links aren't very useful). -- David Dorward <http://dorward.me.uk><http://blog.dorward.me.uk> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- 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/
