I have successfully implemented a sticky footer on my web pages by following specific instructions.
http://css-tricks.com/snippets/css/sticky-footer/
The recommended approach includes using min-height:100%
and not specifying the height property.
.page-wrap {
min-height: 100%;
/* equal to footer height */
margin-bottom: -142px;
}
However, there was one page where I had to set height:100% in
.page-wrap in order to adjust the height of its children. Once I added this height property, the sticky footer stopped working and appeared in the middle of the page.
Is there a solution to make the sticky footer function correctly even when the height is set to 100% in .page-wrap?