|
cswolf -> Visited link rollover not working... (6/1/2006 11:37:22)
|
I'm working on a simple web page with a very simple CSS Style Sheet. I had defined the link colors (link, hover, visited, active) and set the rollover feature to only underline links when the mouse rolled over them. This was working fine until I changed the color of my visited links, and now the rollover no longer works on visited links. Here is my CSS code: body {
background-color: #d7d2c2;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
a:link {
color: #b06239;
text-decoration: none;
}
a:hover {
color: #c6935f;
text-decoration: underline;
}
a:visited {
color: #909090;
text-decoration: none;
}
a:active {
text-decoration: none;
color: #C6935F;
}
.survey_footer {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
Can anyone tell me why this is happening? Thanks.
|
|
|
|