@Ludwig said in Hide mobile menu, when scrolling down:
where, how, what can i enter, that the mobile-menue hides ?
hey theres no lay theme built in way for the mobile menu to hide on scroll
i think @albrecht might have used this code to make it work not sure
<script>
var prevScrollpos = window.scrollY;
window.onscroll = function() {
var currentScrollPos = window.scrollY;
if (prevScrollpos > currentScrollPos) {
document.querySelector(".navbar").style.top = "0";
} else {
document.querySelector(".navbar").style.top = "-50px";
}
prevScrollpos = currentScrollPos;
}
</script>