|
you should make the image huge (like 1600*1200) and then have this at the top of you page
<script>
function changepicsize()
{
backg.width = screen.availWidth;
backg.height = screen.availheight;
}
</script>
<body onload="changepicsize()">
<img name="backg" src="back.gif" style="position: absolute; top:0px; left: 0px;z-index:2;">
<div style="z-index:1;">
the rest of the page
</div>
this isnt very good if your page is a dhtml intensive page
__________________
photoshop too expensive? use the GIMP! www.gimp.org
|