Hello,
how can I fix the Topbar (not only the navbar) during scrolling on this site:
Best regards
Thomas
Hello,
how can I fix the Topbar (not only the navbar) during scrolling on this site:
Best regards
Thomas
Hi Thomas,
jQuery(function($) {
$(window).scroll(function(){
if($(window).scrollTop() > 420 ){
$('.x-topbar').addClass('x-topbar-fixed');
} else {
$('.x-topbar').removeClass('x-topbar-fixed');
}
});
});
.x-topbar.x-topbar-fixed {
position: fixed;
width: 100%;
top: 0;
}
.x-navbar.x-navbar-fixed-top {
top: 46px;
}
Let us know how it goes!