[thelist] CSS Strangeness

.jeff jeff at members.evolt.org
Mon Jul 16 17:50:10 CDT 2001


rachell,

:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: Rachell Coe
:
: I finally decided to use some CSS on a clients web page,
: only the CSS selectors aren't working.  The green links
: are supposed to turn red when the mouse hovers over it,
: only its been really hit and miss on which ones will work.
:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

it's only the visited links that aren't doing the hover color.  try moving
the a:hover to the last of the four declarations for the anchor.

a:link {
 ...
}

a:active {
 ...
}

a:visited {
 ...
}

a:hover {
 ...
}

good luck,

.jeff

http://evolt.org/
jeff at members.evolt.org
http://members.evolt.org/jeff/






More information about the thelist mailing list