Adding to a Scroll to menu items in css

I am using wordpress and have about 8 menu items and due to how the theme has been designed, some of the menu items (in mobile view) get hidden by the footer. How can i make the menu items scroll such that I can view the items at the bottom of the list?

Here is how it appears on mobile: goo.gl/Gr2nNn

Related posts

Leave a Reply

2 comments

  1. Give this <ul> element:

    <ul id="menu-menu-1" class="top-bar-menu left">
    

    A max-height and automatic overflow, for example:

    max-height: 250px;
    overflow-y: auto;
    
  2. Give this element:

    <ul id="menu-menu-1" class="top-bar-menu left">
    

    A max-height and automatic overflow, for example:

    max-height: 250px;
    overflow-y: auto;