I have spent several hours trying to figure out this link bug, experimenting and testing. I have 4 different link styles on a page (default links, leftmenu links, extra small links under pictures and links in footer). Everything is working except for the footer links are picking up the default links blue color instead of being gray. I haven't included the CSS for the other two as I have removed those temporarily and it doesn't change anything so I think it has something to do with default links.
Can anyone see a problem with my code?
Here is the CSS for the default links
/* default links w base font 16px */
a:link, a:visited {
color: #6495ED; /*light blue*/
font-weight: bold;
background: transparent;
text-decoration: none;
font-size:100%; }
a:hover {color: #37678E; } /*dark blue*/
Here is the CSS for the footer links:
a#footer:link, a#footer:visited {
color: #999; /* med gray*/
font-weight: bold;
background:transparent;
text-decoration: underline;
font-size:90%; }
a#footer:hover {
color:#ccc; } /*light gray */