TooLPrincessBlaze
05-30-2002, 10:09 PM
Okay, this is probally a stupid question, (one that nobody I've talked to knows the answer too.) How do you not repeat a background? Is it like < body background="...gif" /repeat > or something?
DaveK
06-01-2002, 03:05 PM
Well, you could put the image as a background in a table cell.
But this will probably work better...
Put this in the HEAD of your page.
<style type="text/css">
#divBackground{
position:absolute; top:1px; left:1px;
visibility:visible;
z-index:1;
}
<style type="text/css">
#divMain{
position:absolute; top:1px; left:1px;
visibility:visible;
z-index:2;
}
</style>
Then in the BODY of your page,
<div id="divBackground">
put your background image here
</div">
<div id="divMain">
put the rest
of your page
here
</div">
vBulletin® v3.7.3, Copyright ©2000-2012, Jelsoft Enterprises Ltd.