JacquieCC said:
How do I make a hyperlink change colour on mounseover?
regards,
Jacquie
You can place this code in an external style sheet
and call it in the head by
<link rel="stylesheet" type="text/css" href="style.css" />
This is style.css:
a:link {color: blue;}
a:visited {color: fuchsia;}
a:hover {color: #0000dd ;}
a:active {color: #0000dd ;}
You should keep the order as is (LVHA), but you can vary the colours as you
wish. There may in fact be a recommended set of colours. I have the same
colours for hover and active - I am not sure whether that is a good idea or
not
If you want them all as hex, blue is #0000ff, fuschia is #ff00ff.
#0000dd is close to medium blue (#0000cd), so you could use that instead