
Originally Posted by
ianruz
i used that code... and when i v iew it in firefox... i get a blue border around the link... but not in any other browser...
Well, that is really a separate issue and has to do with style. If you just make sure that there is no border (styles are best set in a stylesheet - shown here inline with the tag):
HTML Code:
<img style="border:none;" src="whatever.jpg">
There should be no border. It is possible (not real likely) that the line you see has nothing to do with the image's border. In that case, it would be the style of the link that holds the image. If so, that should be set:
Code:
text-decoration:none;
Bookmarks