Skip to content

Instantly share code, notes, and snippets.

@arashi01
Forked from spilliams/stickyfoundationfooter.js
Created October 29, 2012 00:20
Show Gist options
  • Save arashi01/3970616 to your computer and use it in GitHub Desktop.
Save arashi01/3970616 to your computer and use it in GitHub Desktop.
Make Ryan Fait's Sticky Footer work with ZURB Foundation
/* Sticky Footer Foundation fix */
$(".footer, .push").height($(".footer .row").height()+"px");
$(".wrapper").css({'margin-bottom':(-1*$(".footer .row").height())+"px"});
window.onresize = function(){
$(".footer, .push").height($(".footer .row").height()+"px");
$(".wrapper").css({'margin-bottom':(-1*$(".footer .row").height())+"px"});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment