I've got a style sheet being used by a bunch of pages, and it has come to my attention that a visited link during hover will not change color (From blue to black).
this is my code in the style sheet:
I would use javascript to change a link text color during hover, but I would rather not since I would need to do so on all the pages. Is there something I could add to this class, so I don't need visited links during hover would turn black?
Thanks.
this is my code in the style sheet:
Code:
A.TenPx-NormalBlueLinks:link {
FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #27408B; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: underline
}
A.TenPx-NormalBlueLinks:hover {
FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: underline
}
A.TenPx-NormalBlueLinks:active {
FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #999999; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: underline
}
A.TenPx-NormalBlueLinks:visited {
FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #27408B; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-DECORATION: underline
}
I would use javascript to change a link text color during hover, but I would rather not since I would need to do so on all the pages. Is there something I could add to this class, so I don't need visited links during hover would turn black?
Thanks.