Home / Admin / Increase Dropdown Menu Width – Divi Themes
Duplicate Snippet

Embed Snippet on Your Site

Increase Dropdown Menu Width – Divi Themes

Code Preview
css
  .et_pb_menu ul.sub-menu {
        width: 300px; /* Adjust this value to your desired width */
    }
    /* Optional: Adjust width of individual list items and links within the dropdown */
    .et_pb_menu ul.sub-menu li {
        width: 100%; /* Ensures list items take full width of the dropdown */
    }
    .et_pb_menu ul.sub-menu li a {
        width: auto; /* Or a specific pixel value if needed */
        white-space: nowrap; /* Prevents text wrapping */
    }

Comments

Add a Comment