Mega menu wont scroll mobile

Hi All, silly question and probaly an easy fix, my menu wont scroll to see all options. New shopify theme Savor, URL: https://www.affluentarchives.co.uk/

1 Like

Hi,

Hope this will work

  • At the right CSS file add CSS

CSS example

@media screen and (max-width: 768px) {
  .mega-menu {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}