If you need to increase the width of the drop-down menus in the main navigation menu in the Divi header, the following custom CSS will allow you to do so.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* Increase inner width of the Divi drop down menu */ .et-menu li li a { padding: 6px 15px; width: 250px; } /* Increase width of the Divi drop down menu */ .nav li ul { position: absolute; padding: 15px 0; width: 310px; } |