Responsive menu not collapsing on phone view

My website is www.staminastate.com
I’m using X theme and cornerstone to build it. It is supposed to be responsive but the menu won’t collapse on iphone and ipad. How do I make this happen?

Please help!

Hi,

To fix it, you can add the code below in Appearance > Customize > Custom > Edit Global CSS

.x-nav-wrap.desktop {
   display:none;
}

.x-nav-wrap.mobile.collapse.in {
    position: relative;
    z-index: 999;
    background-color: rgb(255, 255, 255);
    padding: 0 20px;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.