Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Multiple Backgrounds Re: Multiple Backgrounds

#77199
Andy Staple
Participant

Add a new div or element inside.

For example;
The repeating background could be the body background, then add a new div with a id

Code:
body {
background: url(“images/main_bg.jpg”) repeat #000;
}

div#interior {
width: ___px;
height: ___px; (or leave blank for auto)
margin: 0px auto;
background: url(“images/interior_bg.jpg”) no-repeat center top #555;
}