Click to See Complete Forum and Search --> : no tile background


CoolBreeze
07-16-2003, 01:20 PM
Is there a way to keep a background image from tiling?

Rakshi
07-16-2003, 01:32 PM
if you want to do that, then just replace your backround with a picture instead.;)

DaveSW
07-16-2003, 01:35 PM
CSS:

what element is it? Here's a div example

<div style="background-image: url(back.gif); background-repeat: no-repeat; background-position: center;">hello</div>

CoolBreeze
07-16-2003, 01:47 PM
It's in the body tag.

Compguy Pete
07-16-2003, 01:49 PM
add this to your body tag

bgproperties="norepeat"

Or what daveSW said