May 22, 2002 #1 bigozz Programmer Joined Apr 12, 2001 Messages 39 Location GB I have a few images, which I use as links to other pages. <a href="[whatever]"><img src="[more whatever]"></a> The problem is that they have a blue border around the images. How can I turn off these borders? Thanks in advance
I have a few images, which I use as links to other pages. <a href="[whatever]"><img src="[more whatever]"></a> The problem is that they have a blue border around the images. How can I turn off these borders? Thanks in advance
May 22, 2002 #2 xutopia Programmer Joined Apr 4, 2002 Messages 2,001 Location CA use border=0 <a href="[whatever]"><img src="[more whatever]" border=0></a> Gary http://www.xutopia.com Haran Upvote 0 Downvote
use border=0 <a href="[whatever]"><img src="[more whatever]" border=0></a> Gary http://www.xutopia.com Haran
May 22, 2002 Thread starter #3 bigozz Programmer Joined Apr 12, 2001 Messages 39 Location GB Ahh, clever. That worked a treat. Cheers Upvote 0 Downvote