Forum Moderators: mack
I have added identical properties for the visited link in the style definition dialogue box and it loses the 'hover' properties and remains the same (no colour switch or underline). Basically I want a link to remain the same whether it has been clicked or not.
Sorry if this seems a stupid question but my brain doesn't seem to want to play today (or this year so far! :))
Ta
Limbo
a:link > a:visited > a:hover > a:active
The a:hover must be placed after the a:link and a:visited calls, since otherwise the cascading rules will override the style of the a:hover rule. Similarly, because a:active is placed after a:hover, the active style will apply when the user both activates and hovers over the a:element.