Skip to content

Instantly share code, notes, and snippets.

@npofopr
Last active April 3, 2017 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save npofopr/21071838a769a1e8f262e0304e998678 to your computer and use it in GitHub Desktop.
Save npofopr/21071838a769a1e8f262e0304e998678 to your computer and use it in GitHub Desktop.
var h_header = $('header').height();
$('#fullpage').fullpage({
paddingTop: h_header
});
var hf = function(){
var h_header = $('header').height();
var h_footer = $('footer').height();
$('.content').css({
'paddingTop': h_header,
'paddingBottom': h_footer
});
}
$(window).bind('load resize', hf);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment