Removing colored line around an image used as a link

liunx

Guest
How can I remove the line around images I use for links? If it can't be removed, how can I set its color?<br />
<br />
I have some transparent .gifs that just don't look nearly as cool with a big blue box around them :( <br />
<br />
Forgive me if the answer has already been posted, I couldn't find anything to do with links around images...<br />
<br />
Thanks for any help, HTML, CSS, it's all good...<br />
<br />
-Steve<br />
SpankingTheVoodooZebra (<!-- m --><a class="postlink" href="http://www.spankingthevoodoozebra.com">http://www.spankingthevoodoozebra.com</a><!-- m -->) since 2003<!--content-->Use this CSS in the image tag:<br />
<img style="border: none"><br />
<br />
Or, to remove the border from all images in a page, use this in the <head>:<br />
<br />
<style type="text/css"><br />
img {border: none}<br />
</style><br />
<br />
Adam<!--content-->That did the Trick!:D<!--content-->
 
Back
Top