Secondary menu not shows

Hello,

Few months ago I made some update on my website and make mobile menu style on all resolutions. With your support everything works fine, but few days ago I find out, that my menu not shows at all on all sub-pages of web-site. I can use the menu only in mobile version. Could you help me?

cubiculum.ru - main page
http://cubiculum.ru/quest_red_button_en/ - example of secondary page

Thank you in advance!

Hi,

To fix it, you can add this in Appearance > Customize > Custom > Edit Global JS

jQuery(function($) {
     $( ".x-btn-navbar" ).on( "click", function() {
          $('.x-nav-wrap.mobile').toggleClass('in');
   });
});

then add this in Appearance > Customize > Custom > Edit Global CSS

.x-nav-wrap.mobile {
    display:block;
}

.x-nav-wrap.mobile.collapse {
   display:none;
}

.x-nav-wrap.mobile.collapse.in {
     display:block !important;
     height:auto !important;
}

Hope that helps.

I made it, but still not working.

Hi,

Try to delete your plugin(super cache ) cache and browser cache then check again.

If that doesn’t help, please provide wordpress admin login in Secure Note.

Thanks

Not working. Additional problem with mobile menu, It is collapsing after open.

Hi there,

You should update your theme first. You have updated your cornerstone to 2.0.6 but the theme remains in old version and that causes conflicts and incompatibilities.

I’ll continue checking once it’s updated.

Thanks!

Theme updated!

Hi there,

Thanks, please add this CSS to your global custom CSS


    
.x-nav-wrap.mobile.collapsing, .x-nav-wrap.mobile.in {
    display: block !important;
}

That should do it, cheers!

Many thanks! Perfect support! )))

Glad we could help.

Cheers!