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

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #202990
    reizer
    Participant

    hey guys,

    I’m trying to create mobile nav from scratch. Can’t understand why I’m getting this problem though:

    HTML

    <div id="toggle">menu</div>
    <div id="nav">
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Products</a></li>
        <li><a href="#">Services</a></li>
        <li><a href="#">Support</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </div>
    

    CSS

    #nav {
        display: none;
    }
    #toggle {
        background-color: #FF9;
        width: 100%;
    }
    #toggle::after {
        content: "≡";
        float: right;
    }
    @media only screen and (min-width: 400px) {
    #nav {
        display: block;
    }
    #toggle {
        display: none;  
    }
    #nav li {
        float: left;
    }
    }
    

    JS

    $(document).ready(function(){
        $("#toggle").click(function(){
            $("#nav").slideToggle(500);
        });
    });
    

    Basically when I resize window without touching anything, all works fine. But if I toggle menu (down and up) while on mobile view, then resize to large view, my normal menu disappears. Although I put “display:block” in media query for web menu.

    It seems i can work this around with “!important”, but it seems like a hack to me. I’d like to do it properly from get go.

    maybe you guys can help.

    #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");
        }
    });
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.