Last active
August 30, 2016 18:02
-
-
Save grantambrose/52e9ca72b79c1c68e684b37d8ae9e597 to your computer and use it in GitHub Desktop.
Sticky the Top Bar in the Beaver Builder Theme
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 the Top Bar in the Beaver Builder Theme ONLY for medium devices and large devices | |
- Change the 992px breakpoint to whatever you like */ | |
@media only screen and (min-width: 992px) { | |
/* Change the 35px value below to the heigt of your Top Bar */ | |
.fl-page-bar { position: fixed; width: 100%; z-index: 10; } | |
.fl-page-header-fixed { margin-top: 35px;} | |
.fl-page-header-primary { padding-top: 35px; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment