How do I eliminate the blue border around linked images?
In your HTML, you can specify the BORDER attribute for the image: Or in your CSS, you can specify the border property for linked images: a img { border: none ; } However, note that removing the border that indicates an image is a link makes it harder for users to distinguish quickly and easily which images on a web page are clickable.