I'm using this code to apply a background colour to hyperlinks when the mouse moves over them.
However it also colours the background of image links. How can I get it to only apply to text links?Code:A:hover {
text-decoration : none;
color : #0080C0;
background-color : #DEDFDF;
}
Thanks
