hello,
i can't change backgroung color menu scrolling
css code : { template > css > template_rtl.css }
.navbar-default
{
position:fixed;
top:0;
z-index:999;
width:100% !important;
}
.scrolling
{
background-color: #424241 !important;
}
javascript code { template > index.php }
<script type="text/javascript">
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 570) {
$(".navbar-default").addClass("scrolling");
} else
{
$(".navbar-default").removeClass("scrolling");
}
});
</script>
Website is the localhost
please guide me