// ----------------------------------------- // STICKY FOOTER // Slight modification from Compass' footer // Structure must be: // //
// ... // //
// // // ----------------------------------------- @mixin sticky-footer( $height, $wrapper : "#main-wrapper", $footer-push : "#footer-push", $footer : ".main-footer" ) { html, body { height : 100%; } #{$wrapper} { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto ($height * -1); } #{$footer}, #{$footer-push} { margin: 0 auto; height: $height; } #{$footer} { height : auto; } }