I have a #main div that I'd like to fill the page between the header and footer when there is no content. When there is content, it should push the sticky footer down, which it does.
CSS:
#main {
background: transparent url("images/main-content.png") top right repeat-y;
clear: both;
overflow: hidden;
margin-top: -10px;
height: 100%;
min-height: 100%;
}
I'm not sure why this isn't working. #main inherits from #wrapper and body, so I'd think setting up 100% height and min-height of 100% would work.
Site:
http://www.dentistrywithsmiles.com
Thanks in advance for your help with this.