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.
▶️ Please watch the video above to get all the exciting details! 👆
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!

Which video is it that shows how to get this same functionality on the Desktop vertical menu?
Hi Bradley!
Please use the following code for the desktop dropdown:
#main-header .nav li ul,.et_pb_menu .et_pb_menu__menu>nav>ul>li>ul{
height: 25vh;
overflow: auto;
}
Let me know how it goes!