CSS link colours
Posted: Sun May 17, 2009 12:05 pm
Hi Everyone
Simple problem, at the top of my CSS document I have
The problem is that I've added images to the webpage now and they have <a href... to take the visitor to other pages on the site but the images have a green box around them which turns red when you hover.... I only want this to happen to my text I dont want the boxes around the images...?
Any suggestions?
Mike
Simple problem, at the top of my CSS document I have
Code: Select all
A:link, A:visited{
color:green;
text-decoration:none;
}
A:hover{
color:red
}Any suggestions?
Mike