Forum Moderators: not2easy
I have been creating websites now for several years and have just got into the CSS way of doing things. So, I am now "converting" my older table websites into CSS.
I have external page links coded through CSS (see below) but the hover option (where it changes the colour to green) doesn't seem to affect an internal anchor link (#name) as it does with an external http (www.abc.com) link. I have looked at many "How to" pages but could not find the answer.
Is there some additional code I need to add to my CSS to enable the "#name" link to change on hover?
Thanks for any insight you can provide.
Mr Zedd
---- my existing CSS code -------
a:link {
color:#2570B1;
font-family: Verdana,Tahoma,Arial,sans-serif;
font-size: 10pt;
text-decoration: none }
a:hover {
color:#006C32;
font-family: Verdana,Tahoma,Arial,sans-serif;
font-size: 10pt;
text-decoration: underline }
a:visited {
color:#000000;
font-family: Verdana,Tahoma,Arial,sans-serif;
font-size: 10pt;
text-decoration: none }