hey guys, i have a footer div with 100% width. it's about a 50px high, depending on it's content.
is it possible to give that #footer a background image that kind of overflows this div?
the image is about 800x600px and i want it to be positioned in the left bottom corner of the footer. it should work like kind of a background image of my website, however i've already set a background image to my body. i need another image positioned at the bottom left corner of my website and the #footer div would be perfect for that.
#footer {
clear: both;
width: 100%;
margin: 0;
padding: 30px 0 0;
background:#eee url(images/bodybgbottomleft.png) no-repeat left bottom fixed;
}
the image is set to the footer, however it doesn't overflow the div. is it possible to make that happen?
overflow:visible doesn't do the job!
