I'm using the 'Sticky Footer' CSS explained here: http://css-tricks.com/snippets/css/sticky-footer/But I've run in to a problem (and I feel like I've tried EVERYTHING!) but I can't seem solve it. Maybe you can help.On certain pages of my site, there is white space above my footer- and I'd like to get rid of it. Please see this page: http://www.ayrturfandtrac.org/recreation/arctic-cat-snowmobiles/Here's the relevant CSS:\[code\]* { margin:0; padding:0; } html, body, #wrap { height: 100%; }body > #wrap {height: auto; min-height: 100%;}#main { padding-bottom:100px; clear:both; } /* must be same height as the footer */#mainBlack {padding:0;} /* must be same height as the footer */#footer { position: relative; margin-top: -100px; /* negative value of footer height */ height: 100px; clear:both; background-color:#FFF;} .text-widget {width:100%;}\[/code\]