Forum Moderators: open

Message Too Old, No Replies

Blue on Hyperlink - Need to Remove

         

Fortune Hunter

8:28 pm on Sep 13, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have a picture of a book and I am linking that picture to the spot on Amazon where you can buy it, but I don't want the blue line to show up around the picture indicating it's a link. Is there an easy way to remove this from showing up? Here is the code for that spot...

<tr>
<td width="382"><div align="center">What Do I Do When&hellip; The Answer Book on Individualized Education Programs, Second Edition</div>
<div align="center"><br />
By John W. Norlin, Esq. and Susan Gorn, Esq.</div></td>
<td width="108"><div align="center"><a href="http://www.link-here.com" target="_blank"><img src="Book-Images/IEP's_That_Succeed.jpg" width="108" height="156" /></a></div></td>
</tr>

Gibble

8:32 pm on Sep 13, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



in your img tag, add border="0" :)

lavazza

9:18 pm on Sep 13, 2007 (gmt 0)

10+ Year Member



or use CSS to kill all birds with one stone

e.g.

<style type="text/css">
a img {border:0;}
</style>

Fortune Hunter

5:45 pm on Sep 14, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



This is one of the those forest for the trees thing! That worked perfectly in both cases. Thank you both!