Hi,
Lets try it again, kindly do the following.
- Add this in
Theme Options > JS
jQuery( function($) {
$(window).scroll(function(){
if ( $(this).scrollTop() <= 0) {
$('.x-navbar').removeClass('x-navbar-fixed-top');
}
});
});
- Add this in
Theme Options > CSS
.x-navbar.x-navbar-fixed-top {
background: rgba(255,255,255,0.8);
}
body.x-navbar-fixed-top-active .x-navbar-wrap {
height: auto;
}
.x-navbar.x-navbar-fixed-top .desktop .x-nav > li > a {
height: 50px;
padding-top: 20px;
transition: all 0.5s ease;
}
.x-navbar.x-navbar-fixed-top .x-navbar-inner {
min-height: 50px;
}
.x-navbar.x-navbar-fixed-top .x-brand {
margin-top: 5px;
}
.x-navbar-static-active .x-navbar.x-navbar-fixed-top .desktop .x-nav > li.x-menu-item-woocommerce > a, .x-navbar-fixed-top-active .x-navbar.x-navbar-fixed-top .desktop .x-nav > li.x-menu-item-woocommerce > a {
padding-top: 10px;
}