Page 1 of 1

Highlighted image

Posted: Wed Dec 15, 2004 6:06 am
by localhost
i am using <a> tag over the <img> tag but it outlines the image blue how can i remove that outline.....and i dont want to use <inpt type=image>(novice)

Posted: Wed Dec 15, 2004 6:09 am
by zenabi
Using CSS:

Code: Select all

a:link img, a:visited img, a:hover img, a:active img &#123; 
	border: none;
&#125;

SOLVED

Posted: Fri Dec 17, 2004 1:57 am
by localhost
thanks it worked