As you resize the window, the height of the footer expands, but not the background color. Help!
http://twitter.imtqy.com/bootstrap/examples/sticky-footer.html
height: auto seems to solve the problem. You can enable it using a media query for small viewports:
height: auto
@media only screen and (max-device-width: 480px) { #footer { height: auto; } }
Your demo no longer works, but the best Bootstrap sticky footer I found is: https://gist.github.com/aalaap/3066704