How do I increase the width of my drop down menus? (Venture Theme)

Hello,

Can someone please remind me how I increase the width of the drop down menu in Venture?

www.UpperMountainLLC.com

Under “Water Safety” for example, the “>” after “Personal Flotation Devices” drops down to a new row and I need like 6 more characters for the “Immersion/Dry/Work Suits” to display in one line.

I think I found a post where to do this a while ago but can’t find or remember how to do it thanks.

Hi @UpperMountain

Try adding the following code at the end of your theme.scss.css file:

.meganav__nav .site-nav__dropdown-container {
    padding: 0 0px 0 0px!important;
    margin-left: 0px!important;
}

Hi @JHKCreate , thanks again. This worked but created a new and similar issue in the “Hunting” drop down menu (see attached).

Add this code as well:

@media only screen and (min-width: 750px)
{
.page-width {
    padding: 0 0px!important;
}
}

Let me know!

Totally worked, thanks @JHKCreate !