Knud Gert Ellentoft wrote:[color=blue]
> DM skrev:
>
>[color=green]
>>I searched on this topic. Found others who mentioned it, but no
>>solution. I can't seem to get visited links to appear in a different
>>color in Mozilla or Firefox on the PC.[/color]
>
>
> The order must be
> link
> visited
> hover
> active
>
>
http://www.w3.org/TR/CSS21/selector.html#x35[/color]
I tried changing it (see code below), but that doesn't work either. The code
below does not work in Mozilla or Firefox at my organization. It works fine in IE.
I've also noticed that on
www.yahoo.com,
www.cnn.com,
www.taxes.ca.gov visited
links change color in IE 6, but not in Mozilla 1.7.3 or Firefox 1.0.2 for the PC.
I would be grateful to anyone who can shed some light on this.
td#footer a:link{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}
td#footer a:visited{
border-bottom: solid 1px #FFCC66;
color: #FFCC66;
text-decoration: none;
}
td#footer a:link:hover,
td#footer a:visited:hover{
border-bottom: none;
color: #00FF33;
text-decoration: none;
}
td#footer a:link:active,
td#footer a:visited:active{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}