I've set up CSS formatting for links with the following code:
a:link {color: #00728B;}
a:visited {color: #7497A7;}
a:active {color: #00728B;}
a:hover {color: #00728B;}
I just noticed that text I have marked as a target with the <a name> tag does not have the "link" color applied but does change on hover. This is a bit distracting since it suggests to users that these are clickable links when they are not.
Here's an example.
Is there a way to differentiate the hover behavior so it applies to a href but not to a name?
Thanks,
Andrew
|