Hey All, I'm working on a website, and when I make this image link to a certain place, it gets a line around the box, which screws up the whole design. How can I fix this? Kind Regards, Klaas Koopman
Add the code "border=0" <a href="http://www.example.com/"> <img src="example-image.png" border="0"> </a> Code (markup):
Klass, Do you use software to generate HTML or you do hand-coding? If you're using Frontpage, the option window will ask you about setting the border=0 as well.
Or, if you're using CSS, you can use: img { border: 0px none; } Simply put, you wont have to worry about changing the border attributes for each image link.