Barbara Dozetos schrieb:
ok -- I think I've done it all right, but I still don't get the hover effect on my visited links. check this page: http://www.pcc.com/newsletter/ as an example.

"The :link pseudo-class applies for links that have not yet been visited. The :visited pseudo-class applies once the link has been visited by the user. ... The two states are mutually exclusive" (http://www.w3.org/TR/CSS21/selector.html#link-pseudo-classes)

Your rule seems to assume that :link means any a element:

#main a:visited, #oldmain a:visited {
        color: #1a76bc;
        }
#main a:link:hover, #oldmain a:link:hover {
        color: #33a544;
        }

Ingo
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to