Skip to content

Instantly share code, notes, and snippets.

@tuxracer
Created November 17, 2014 22:34
Show Gist options
  • Save tuxracer/397306a1459d7f229e69 to your computer and use it in GitHub Desktop.
Save tuxracer/397306a1459d7f229e69 to your computer and use it in GitHub Desktop.
unfix headers
(function () {
var $ = window.jQuery;
if ($) {
$('body').find('div,header').each(function () {
var $el = $(this);
if ($el.css('position') === 'fixed' && $el.css('top') === '0px') {
$el.css('position', 'relative');
}
});
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment