Hi,
Would someone have a way to decrease the menu and its content when the user scroll down ?
I tried some things in the themes options in javascript but no success.
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
document.getElementsByClassName(“x-navbar-wrap”).style.height = “50px”;
document.getElementsByClassName(“x-brand.img”).style.fontSize = “25px”;
} else {
document.getElementsByClassName(“x-navbar-wrap”).style.height = “150px”;
document.getElementsByClassName(“x-brand.img”).style.fontSize = “35px”;
}
}
Thank you.