How do I get rid of the blue line around my link images using HTML/CSS?

Daniel N

New member
Whenever I try to use an image as a link, it has this annoying blue border that totally screws up my design.

How can I get rid of it?
 
In the <img src="URL HERE">
Add border="0"
So it would be like

<img src="URL HERE" border="0">

:)
 
Back
Top