Hi, I am looking to make the website navigation bar transparent when entering the website then after scrolling it becomes a solid color. Example: https://www.maf.nl/5
Thank you!
Every time I use the code I provided below it becomes transparent and after scrolling and changes to a color. This is what I want BUT I want if I go back to the top of the page it turns transparent again.
Code I’ve Tried:
jQuery(function($){
$(window).scroll(function(){
if( $(this).scrollTop() == 0 ) {
$('.x-navbar-fixed-top').removeClass('x-navbar-fixed-top');
}
});
});