PDA

View Full Version : Line around images??


GSeybold
02-09-2009, 08:24 AM
How come when I place any banners or images in my header or footer the are always outlined with a small colored border?

Thank so much.

Gabby

Shamil.
02-09-2009, 09:17 AM
By default most browsers give an image a border. You will have to tell it to not use a border.

<img src="imagelocation.jpg" alt="" border="0">

Do something like that. You can specify it within the image tag or use CSS. It all works to the same effect. :)

TimberFloorAu
02-10-2009, 04:28 AM
Goto admincp.

Edit main.css

at very bottom add:

a {
outline: none;
}