Quote:
Originally Posted by Sir John Luke
|
That's the old way.
In your CSS file add this:
Code:
a:link {
color:#FF0000;
}
a:visited {
color:#FF0000;
}
a:hover {
color:#FF0000;
}
a:active {
color:#FF0000;
}
link = link hasn't been clicked
visted = link has been viisted
hover = mouse is over link
active = mouse is clicking link
The order they are listed is crucial!
Colours are numbers between 0-255 (as strength) converted to 2 digit hexadecimal (so 0 = 00 and 255 = FF) in the order Red Green Blue with no spaces and has a # at the start.
So red is #FF0000 etc. Black is #000000 and white is #FFFFFF