A simple question about HTML tables

BigGreg85

Gawd
Joined
Jun 19, 2003
Messages
910
Ok here is my website

on the home page...how do I get rid of that red border around my pictures. I used a table for that page. It's weird because the color of the border is whatever color I set my LINK color to.

Can you help me out?


Thank You
Greg
 
<img style="decoration:none" src="">

I think... or somethin like that. I might be wrong, but you need to set an attribute on the tag that is causing it.
 
or better yet put this in a separate style sheet so no images will have a border

img {
border: none;
}

or the following so images inside anchor tags won't have a border

a img {
border: none;
}
 
Back
Top