Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save taricco/59f235de90cf85457ddf6c36b231ad58 to your computer and use it in GitHub Desktop.
Save taricco/59f235de90cf85457ddf6c36b231ad58 to your computer and use it in GitHub Desktop.
CSS
@media (max-width:992px) {
.fl-sticky-on-mobile {
position: fixed !important;
width: 100% !important;
left: 0 !important;
top: 0 !important;
z-index: 9999 !important;
border-top: 0 !important;
}
.fl-sticky-on-mobile .fl-row-content-wrap {
background-color: #dbe5ef !important;
}
.admin-bar .fl-sticky-on-mobile {
top: 32px !important;
}
}
@media (max-width:767px) {
.admin-bar .fl-sticky-on-mobile {
top: 46px !important;
}
} /* Make navigation sticky on Tabelt and Mobile */
JS
jQuery(document).ready(function($){
if ( typeof window.FLBuilderConfig === 'undefined' || window.FLBuilderConfig === null ) {
$('header.fl-builder-content').addClass('fl-sticky-on-mobile')
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment