Skip to content

Instantly share code, notes, and snippets.

@Sonia-Shurmi
Created April 5, 2016 06: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 Sonia-Shurmi/56deba2c790008b3f8ab5c0bb454f7bf to your computer and use it in GitHub Desktop.
Save Sonia-Shurmi/56deba2c790008b3f8ab5c0bb454f7bf to your computer and use it in GitHub Desktop.
banner-window-height
//window height
var windowHeight= $(window).height();
var headerHeight= $('.header-area').height()
$(".hero-area").css('height', windowHeight - headerHeight + 'px');
$(".hero-area .item").css('height', windowHeight - headerHeight + 'px');
$(".hero-area .item img").css('height', windowHeight - headerHeight + 'px');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment