How can I keep the top bar fixed when scrolling down? I want it to stay in place over the header even when the header shrinks down upon scrolling.
My website in development is cleanshaveweb.com/pediaspeech3
How can I keep the top bar fixed when scrolling down? I want it to stay in place over the header even when the header shrinks down upon scrolling.
My website in development is cleanshaveweb.com/pediaspeech3
Hey Steve,
That should be possible via custom CSS. Try adding the CSS snippet below.
.fl-page-bar {
position: fixed;
width: 100%;
z-index: 999;
}
.fl-page-header-fixed {
margin-top: 47px;
}
.fl-page-header-primary {
padding-top: 47px;
}
Ben