Hi There,
Please find this custom JS:
jQuery( function($){
$(window).scroll( function() {
if( $(this).scrollTop() > 10 ) {
$('.home .x-navbar').css({ backgroundColor : 'black' });
} else {
$('.home .x-navbar').css({ backgroundColor : 'transparent' });
}
} );
} );
jQuery( function($){
$(window).scroll( function() {
if( $(this).scrollTop() > 10 ) {
$('.home .x-navbar').css({ backgroundColor : 'transparent' });
$('.home .desktop .sub-menu').css({ backgroundColor : 'black' });
} else {
$('.home .x-navbar').css({ backgroundColor : 'transparent' });
$('.home .desktop .sub-menu').css({ backgroundColor : 'black' });
}
} );
} );
And change to this:
jQuery( function($){
$(window).scroll( function() {
if( $(this).scrollTop() > 10 ) {
$('.home .x-navbar').css({ backgroundColor : 'black !important;' });
$('.home .desktop .sub-menu').css({ backgroundColor : 'black !important;' });
} else {
$('.home .x-navbar').css({ backgroundColor : 'transparent !important;' });
$('.home .desktop .sub-menu').css({ backgroundColor : 'black !important;' });
}
});
});
Then find this custom CSS:
body .x-navbar {
background-color: transparent !important;
border: 0;
box-shadow: none;
position: fixed;
width: 100%;
}
Also change it to this:
body .x-navbar {
border: 0;
box-shadow: none;
position: fixed;
width: 100%;
}
After that find and remove these custom CSS codes as well:
.home .x-navbar.x-navbar-fixed-top {
background-color: transparent !important;
}
.home .x-navbar {
background: transparent !important;
}
To remove the lines, please add this custom CSS:
.x-navbar .desktop .x-nav>li>a {
border: none !important;
}
Hope it helps 