Skip to content

Instantly share code, notes, and snippets.

@chadtomkiss
Forked from jamesslock/gist:6223554
Last active December 21, 2015 07:19
Show Gist options
  • Save chadtomkiss/6270867 to your computer and use it in GitHub Desktop.
Save chadtomkiss/6270867 to your computer and use it in GitHub Desktop.
$(function(){
var $window = $(window);
var $header = $('.site-header');
var $windowHeight = $window.height();
var $headerHeight = $windowHeight - 20;
$header.css({'height': $headerHeight +'px'});
$window.resize(function(){
$header.css({'height': $headerHeight +'px'});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment