Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Mob Nav Disappears After Resize Reply To: Mob Nav Disappears After Resize

#202999
reizer
Participant

thanx Senff,

as I’m not good at programming, I’d like to continue with CSS/HTML on the project. I’ve found this solution by browsing and it seems to have worked. I think it’s browser-proof also as it’s javascript.

$(window).resize(function(){
    if(window.innerWidth > 400) {
        $("#nav").removeAttr("style");
    }
});