CSS for rollover text color change.
I have been trying to get my text links to change color from white to yellow upon a rollover, and the css I have tried is not working. Please help! ![]()
I have been trying to get my text links to change color from white to yellow upon a rollover, and the css I have tried is not working. Please help! ![]()
You should combine your CSS code into one external stylesheet for easier site management.
Put your navigation styles below the text link styles in this order.
a { font-weight: normal; text-decoration:none}
a:link, a:visited {color: #FFF;}
a:hover, a:active, a:focus {color: #FFED00;}
nav ul { list-style-type: none;}
nav ul li a {
text-decoration: none;
color: #ffffff;
text-align: center;
display: block;
text-transform: uppercase;
padding: 8px;
}
nav ul li a:hover, nav ul li a:active, nav ul li a:focus {
color: yellow;
text-decoration:underline;
}
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.