I am experiencing an issue with a link that is displaying as white and gray for "a" and "a:hover", despite my CSS file specifying otherwise. Firebug confirms this, but I can't figure out what is overriding it. Can anyone offer any insight?
Below is the reported code from Firebug and other browser tools:
media="screen"
#header-area a {
color: #eeeeee;
text-decoration: underline;
}
However, this is the actual code in the CSS file:
media="screen"
#header-area a {
color: #005dcc;
text-decoration: underline;
}
I have searched through the entire site's source code for "#eeeeee" and only found two instances relating to border colors in 209 files.
This issue seems to be specific to the header.php section of my site.
If anyone has any insights on what might be causing this color setting, I would greatly appreciate your input.