I have the following page (deadlink: http://www.workingstorage.com/Sample.htm ) that has a footer which I can\'t make sit at the bottom of the page.
http://www.workingstorage.com/Sample.htm
I wa
A simple method is to make the body 100% of your page, with a min-height of 100% too. This works fine if the height of your footer does not change.
100%
min-height
Give the footer a negative margin-top:
footer { clear: both; position: relative; height: 200px; margin-top: -200px; }