Created
February 21, 2018 21:57
-
-
Save CapWebSolutions/381f0836e6b17961049f9ee78d1e4db9 to your computer and use it in GitHub Desktop.
Sticky Genesis Header
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Sticky header */ | |
| .site-header { | |
| position: fixed; | |
| width: 100%; | |
| z-index: 1000; | |
| } | |
| /* this is optional and may not be needed in some situations */ | |
| nav.nav-primary { | |
| padding-top: 164px; /*height of header (can be easily obtained using Firebug)*/ | |
| } | |
| /* The above is a generic site-wide solution. Add .page-id-xxxx in front of .site-header to apply it to page xxx */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment