• Hi. I need to add a lot of child / dropdown menu items.
    1st, I am not able to add more than 4 levels.
    2nd, I can’t scroll down to view all the menu items, just the page moves down.
    http://prntscr.com/p7pl89
    Please let me know how to fix this?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author amplethemes

    (@amplethemes)

    For scrolling menu, go appearance > customize > additional css and paste this css and publish it .

    ul.sub-menu {
    max-height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    }

    and more than 4 level menu, you need to edit a header.php code go line 166 you found this code:
    <?php
    if (has_nav_menu(‘primary’)) {
    wp_nav_menu(array(
    ‘theme_location’ => ‘primary’,
    ‘menu_class’ => ‘main-nav’,
    ‘depth’ => 4,

    )
    );
    }
    ?>

    only you need to removed ‘depth’ => 4, then it works

Viewing 1 replies (of 1 total)

The topic ‘Child menu items scrolling issue’ is closed to new replies.