No link, sorry
And the code is messy so i'll reproduce a simplified version here:
Code:
<body>
<div class="maindiv">
not very much content in here.
</div>
</body>
Code:
.maindiv{
background: url('bg2.gif') repeat;
width: 100%;
}
body {
background: url('bg1.gif') repeat;
}
The problem is that since there is not much content in the div, the div's height will be less than the browser window's height. Therefore, the background (bg2.gif) will not tile all teh way down to the bottom of the window. But I need it to.