Log in

View Full Version : 2 background images???



ModernRevolutions
12-15-2008, 05:46 PM
Ok im trying to make a layout for myspace but there is a problem. I need 2 background images. I need this (http://www.modernrevolutions.net/layoutbackgrounds/house1.png) one to be repeating in the background (which is easy to do) but i also need to have this (http://www.modernrevolutions.net/layoutbackgrounds/house2.png) one on the bottom left of the page but i have no idea on how to make 2 background images. does anyone know how to fix the problem?

BLiZZaRD
12-15-2008, 06:02 PM
place the second image in a div, say a footer div.

CSS:



.footer {
position: absolute;
bottom: 0px;
left: 0px;
background: url(path/to/image.jpg);
width: sameAsImage;
height: sameAsImage;
}


then in the HTML:



<div class="footer"></div>