Can anybody tell me at all where in the CSS the area to change TEXT link colours is, this is where the usual blue and purple is on the page. If it doesn’t exist where can I add it in?
Thanks,
Jack
Can anybody tell me at all where in the CSS the area to change TEXT link colours is, this is where the usual blue and purple is on the page. If it doesn’t exist where can I add it in?
Thanks,
Jack
here you go mate. stick this in the <head> part of the page:
A:link {text-decoration: none; color: #858585;}
A:visited {text-decoration: none; color: #858585;}
A:active {text-decoration: none; color: #858585;}
A:hover {text-decoration: none; color: #ffffff;}
Much appreciated guys, works a treat.
Thanks for that I will make great use of it also
I wouldn’t put it in the head, instead put it in your stylesheet
I placed it in the a CSS Coding section of the header. Works a dream.
It’ll work in a stylesheet or in the head whichever. But it is a bit neater in a stylesheet, thats the only difference