Removing link borders......

liunx

Guest
Is it possible to remove the highlight<br />
borders around graphic & pic links?<br />
Similar to how CSS can add/remove the under/over lins on text. Thank you,,,<!--content-->something like this.<br />
<br />
<img src=http://www.htmlforums.com/archive/index.php/"blah.jpg" border="0"><!--content-->Thanks for the quick reply,,,<br />
however the border="0" also removes my transparent .GIF as well.<br />
Any ideas why? Thank you,,,<!--content-->If you want none of the images to have borders, add this CSS, instead of putting border="0" for every image:<br />
<br />
<br />
img { <br />
border: 0;<br />
}<!--content-->Thanks for the tip Jeff,,,<br />
I only want to remove the borders<br />
from the transparent .GIF's<br />
and the border="0" removed the entire pic.<br />
Thanks,,,<!--content-->Try:<br />
<br />
<img src=http://www.htmlforums.com/archive/index.php/"blah.jpg" border="0" alt="some text"><br />
<br />
<br />
<br />
Add alt="some text" to every <img > tag, the text reflecting what is in the dispayed image. On unimportant images, like spacer elements, a minimum of alt="" is fine. For bullet-point images, alt="*" is often used. Search engines do index the alt text. The alt attribute is a required element.<!--content-->The border="0" does infact work,<br />
in a rush to insert into the line,<br />
I accidentally wiped-out a set of quotes<br />
in part of the <img> tag.<br />
Too many hours at the screen,<br />
Thanks Again, Rusty,,,<!--content-->
 
Back
Top