Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1331442
    Dil
    Participant

    Hi there,

    When I open the menu on a mobile device and a screen test, and then open a sub menu, the menu does not scroll down for me to be able to see its contents or even my website. Please help, thanks!

    #1331443
    Dil
    Participant
    This reply has been marked as private.
    #1331446
    Dil
    Participant
    This reply has been marked as private.
    #1331585
    Christopher
    Moderator

    Hi there,

    Mobile menu shouldn’t be fixed since it causes issues like yours, so please remove following code :

    @media (max-width: 979px){
      .x-navbar-fixed-top, 
      .x-navbar-fixed-left, 
      .x-navbar-fixed-right {
        position: fixed;
    
      }
    }

    Customizer works fine, please see the attachment. Please check again and confirm me or let us know how we can replicate the issue.

    Thanks.

    #1331963
    Dil
    Participant

    Hi Christopher,

    Thanks for your help, but I wanted to have it so that it is fixed. Isn’t it possible to keep it as it is but also fix that sub menu issue? Greatly appreciated, thanks.

    As for the chrome issue, next time it arises I will have a recording for you.

    #1331969
    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    @media (max-width: 979px) {
    .x-navbar.x-navbar-fixed-top {
        width:100%;
        max-height: 300px;
        position: fixed;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    }
    
    #1332075
    Dil
    Participant

    Hi thanks for that but that code seems to be a little glitchy, could you try it on my site with using the sub menu?

    Also my woocommerce tab in the customizer seem to be glitched as well: http://cl.ly/3p2D3y441s0O

    #1332081
    Dil
    Participant
    This reply has been marked as private.
    #1332458
    Nabeel A
    Moderator

    Hi again,

    To fix the issue properly you’ll need to make the Navbar static instead of fixed. Please remove the previous code first:

    @media (max-width: 979px) {
    .x-navbar.x-navbar-fixed-top {
        width:100%;
        max-height: 300px;
        position: fixed;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    }

    Then add the following code in your Customizer:

    @media (max-width: 979px) {
    .x-navbar.x-navbar-fixed-top {
        position: static !important;
    }
    }

    Fixed Navbar in smaller screens can only work with few menu items. If you’ve more than few items then it’s not recommended to make the Navbar fixed.

    Hope this helps!

  • <script> jQuery(function($){ $("#no-reply-1331442 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>