Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #701285

    justin5188
    Participant

    On this site https://www.galavantier.com/ their mobile menu is always open and you dont have to select the menu icon on mobile to bring it up. When I shrink the window it keeps the menu expanded. Is this possible with the X theme?

    #701757

    Lely
    Moderator

    Hello There,

    Please add the following CSS via Appearance > Customize > Custom > CSS to have mobile menu always expanded.

    @media (max-width: 979px){
    .x-nav-wrap.mobile.collapse {
        display: block !important;
        height: auto !important;
    }
    }

    Hope this helps.