Forum Moderators: open

Message Too Old, No Replies

border around image

I need to get rid of a border around an image !

         

gooo

10:45 pm on Dec 11, 2004 (gmt 0)

10+ Year Member



I need to get rid of a border around an image! I positioned the picture (a partly transparent gif) using css ... the picture is used as a link ot a different page ... but it's not supposed to have a border around it. can anyone help me?

FloppyCopy

11:32 pm on Dec 11, 2004 (gmt 0)

10+ Year Member



Add:

style="border: 0px;"

to the IMG tag.

gooo

12:27 am on Dec 12, 2004 (gmt 0)

10+ Year Member



thanks ... I thought style="border-style:none" would be enough .. but oviously it depends on the browser again ... I use opera and it always showed a border , but IE didn't

mrnoisy

10:18 pm on Dec 12, 2004 (gmt 0)

10+ Year Member



This will work also:

style="border:none"

or for all images:


img {
border:none;
}