How to create a fixed Top Bar Menu in Beaver Builder
This file contains 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
/* | |
Add this to the Additional CSS area in the customizer or to the style.css in your child theme - More info and help at www.PressAvenue.com | |
or on the blog post https://pressavenue.com/create-fixed-top-bar-menu-beaver-builder | |
*/ | |
.fl-page-bar { | |
position: fixed; | |
width: 100%; | |
z-index: 999; | |
} | |
.fl-page-header-fixed { | |
margin-top: 47px; /* adjust this based on your header padding*/ | |
} | |
.fl-page-header-primary { | |
padding-top: 47px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment