Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cliftonc0613/5428486 to your computer and use it in GitHub Desktop.
Save cliftonc0613/5428486 to your computer and use it in GitHub Desktop.
/* 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