Quote:
Originally posted by RobRich That probably is a template issue that can be easily fixed. I will take a look later tonight.
Robert Richmond |
To fix it, you can reverse these two lines in the css:
PHP Code:
A.top:hover { font-family: Verdana, Arial; color: white;font-size: 8pt; font-weight: normal;
text-decoration: none; background: #00283C}
A.top:link { font-family: Verdana, Arial; color: black;font-size: 8pt; font-weight: normal; text-decoration: none }
like the following:
PHP Code:
A.top:link { font-family: Verdana, Arial; color: black;font-size: 8pt; font-weight: normal; text-decoration: none }
A.top:hover { font-family: Verdana, Arial; color: white;font-size: 8pt; font-weight: normal;
text-decoration: none; background: #00283C}