Log in

View Full Version : how do i get rid of the box around images.


sonichero
04-27-2007, 01:46 AM
well, some images in my forum get the box around them and some don't, for example here:

http://www.lambdacoremodule.net/forums/showthread.php?p=500#post500

my username, mishakoz, which is an image has a box, but the thumbnail doesnt. I want to be rid of the box around images. How?

WetWired
04-27-2007, 01:11 PM
The box is caused by it being in a link. All you need to do is add the attribute border=0 to the offending images and it will go away.

CyberAlien
04-27-2007, 01:19 PM
in extra css (last textarea at the end of css editor) add this:img { border: 0; }

WetWired
04-27-2007, 03:06 PM
Actually, that is wrong. It needs a unit to be correct CSS. Not all browsers will accept that. With 0px instead of just 0, that will work.