1.

How Do I Eliminate The Blue Border Around Linked Images?

Answer»

In your HTML, you can specify the BORDER attribute for the image: 
<a HREF=...&GT;<img SRC=... ALT=... border="0"></a> 
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.

In your HTML, you can specify the BORDER attribute for the image: 
<a href=...><img src=... alt=... border="0"></a> 
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.



Discussion

No Comment Found