Page 1 of 1

Outline problems for images embedded in a hyperlink

Posted: Mon Nov 13, 2006 2:53 am
by Rovas
I have to embed images in hyperlinks (<a href='www.exampe.com'><img src='picture.jpg' /></a>) and I want to remove the blue outline around the image. I tried with CSS but it only works in Opera in FF and IE it remains.

Posted: Mon Nov 13, 2006 3:10 am
by JayBird

Code: Select all

<a href='www.exampe.com'><img src='picture.jpg' border=0 /></a>

Posted: Mon Nov 13, 2006 3:58 am
by Rovas
Thank you very much (I thought it was about outline-style or border style).