This is driving me mad! Works fine until you go back to a page already
visited then hover changes. Css used below. Any help much appreciated.
thanks,
Chris.
a:link {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000FF;
text-decoration: none;
height: 30px;
width: 150px;
padding-top: 5px;
}
a:visited {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000FF;
text-decoration: none;
height: 30px;
width: 150px;
padding-top: 5px;
}
a:hover {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #ffb401;
text-decoration: none;
height: 30px;
width: 150px;
padding-top: 5px;
background-color: #0000FF;
}
a:active {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #0000FF;
text-decoration: none;
height: 30px;
width: 150px;
padding-top: 5px;
}
.
|