Barbara,

> 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.

I think all you need to do is remove ":link" from your selectors, like this:

#main a:hover, #oldmain a:hover {
        color: #33a544;
        }

And if you want the hover style to have the same font-weight in both (I'm
not sure if you do), you need to define it explicitly (since you made it
bold in a:visited):

#main a:hover, #oldmain a:hover {
        color: #33a544;
        font-weight: normal;
        }

Larry
______________________________________________________________________
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