Skip to content

Instantly share code, notes, and snippets.

@magician11
Last active August 29, 2015 13:55
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 magician11/8782676 to your computer and use it in GitHub Desktop.
Save magician11/8782676 to your computer and use it in GitHub Desktop.
Fixed Header
/* FIXED HEADER */
#header, header.site-header {
position: fixed;
width: 100%;
z-index: 999;
}
/* Padding will need to be added. It may not be here. */
#inner, div.site-container div.site-inner {
padding-top: 56px;
}
@media only screen and (max-width: 1023px) {
#header, header.site-header {
position: relative;
}
#inner, div.site-container div.site-inner {
padding-top: 0px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment