How do I remove the blue borders around an image with a link? If an image is a link or rather: is the anchor of a link, that image has ugly blue borders by default in most browsers. That happened to me when I tried to embed an image from Flickr.
To remove that border you either add border="0" within the image tag, e.g. <img src="image.jpg" border="0">. I did it with CSS by adding the following code into the CSS stylesheet:
a img {
text-decoration: none;
border: none;
}
... and the border is gone...