Correcting The Long Menu Issue
You may find if you have too many menu items in your Divi menu that it will expand down below the screen, making some of the items cut off and out of reach. The background of the page scrolls, but the dropdown menu remains stationary by default. This quite the problem, and I am happy to say that our tutorial solves this. In this tutorial I will show you how to make the Divi mobile dropdown menu height scrollable so it does not get cut off when there are too many menu items.
FYI: You can do this with a setting directly in the Divi Builder with our popular Divi Responsive Helper plugin! Take a look, it is so easy!
Join subscribers on our YouTube channel and enjoy other Divi video tutorials!
Add Some CSS To Make The Divi Mobile Menu Dropdown scrollable
This tutorial is very easy because it only involves copying and pasting a simple CSS code snippet into your website. After that, your mobile menus that contain a lot of menu items will work great for your visitors.
If you are using our free Divi child theme, place this snippet into the style.css file. Otherwise, place this in your Divi>Theme Options>Custom CSS code box. If you need help, check out our complete guide on Where To Add Custom Code In Divi.
/*make the Divi mobile dropdown menu scrollable*/
.et_mobile_menu {
overflow: scroll !important;
max-height: 80vh;
}
The max-height value in the provided code can be changed to suit your needs. The 80vh means 80% of the viewport height. This value seems to work well.
Do It With A Setting!
Make life easier and use the Divi Responsive Helper instead, the ultimate Divi responsive toolkit with awesome features and settings to help make your website look and work great on all devices!
Here is the setting when using our plugin, it doesn’t get easier than this!

Greetings and thank you for this tip. Unfortunately, I can’t get this to work. I’ve applied the CSS fix to the .et_mobile_menu element, but only the page scrolls, not the menu.
Here’s the website: https://bicicultura.org/
Ops, I found the problem. It was this CSS code that was removing pointer events from the menu altogether:
.et_pb_module .et_mobile_nav_menu { pointer-events: none; }
I removed it and now it works as expected.
Sorry for the trouble!
Hello! Thank you very much…many time that i’m looking for this solution!!! GREAT.
You are welcome, I’m glad you found this resource helpful!
Hey thanks, works great. Is it possible to make the scrollbar invisible? So you don’t see it?
Sure, just use CSS https://www.digitalocean.com/community/tutorials/css-scrollbars and hide it with display: none;