Why have my mega menus columns have grown

see drop down of multiday tours. Width set to 450px

this works but is too far to the left
.x-megamenu .sub-menu {
max-width: 450px;
}

When this is added it revert to a narrow col
.x-navbar-fixed-top-active .desktop .x-nav .x-megamenu,
.x-navbar-static-active .desktop .x-nav .x-megamenu {
position: relative;
}

Hi,

The megamenus are meant to be full width, but if you would like it to be 450px, add the code below in Theme Options > CSS

.x-megamenu .sub-menu {
    width: 100%;   
    max-width: 450px;
}

.x-navbar-fixed-top-active .desktop .x-nav .x-megamenu, 
.x-navbar-static-active .desktop .x-nav .x-megamenu {
    position: relative;
}

Hope this helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.