First of all,
id is unique in every page. You have two
container ids.
Fix your
markup error as well as your
CSS error.
You also had a lot of divs which I'm certain, that it's
divitis
I'm not always fund of using
absolute positioning as it gives you a brittle layout, but in your case, since you've got a lot of divs, and you miss to put them in one container, then I would suggest changing your rule in
leaf2 to this:
Code:
#leaf2{
position:absolute;
bottom:0px;
width:100%;
height:47px;
background-image:url(images/footer.jpg);
}
Hope it helps.