• Resolved fcariboni

    (@fcariboni)


    When I open the menu in the mobile, having so many items I can’t see the ones that come out of the screen. I tried adding with css overflow:scroll but it didn’t work.

    How can I do?
    Thank you
    Federico

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Alexandru Tapuleasa

    (@talextech)

    This is a tricky issue, yeah ??

    I don’t think it can be fixed with only CSS though. I will add to our ToDo list to maybe try and do something for cases like this but we don’t have any updates planned for the near future.

    The closest solution I could find was if you add this custom CSS it mostly does the job but since the Menu bar is below the logo when the page is scrolled up, but it is at the very top after there will be a gap ??

    @media only screen and (max-width: 768px)
    {
      #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
        display: block;
        position: fixed;
        top: 125px;
        height: 100vh;
        width: 100%;
        z-index: 99999;
        left: 0px;
        overflow-y: scroll;
        background: #FFF;
      }
    }
    Thread Starter fcariboni

    (@fcariboni)

    Hello,

    your solution works.

    I’ve added another css rule for when the menu is positioned at the top to remove the gap.

    Thank you

    Federico

    Plugin Author Alexandru Tapuleasa

    (@talextech)

    Awesome! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Responsive menu doesn’t work’ is closed to new replies.