XF 2.2 How do I change the width of navigation pull-down menu?

It is not a style variable but set in core_menu.less template.

You can put the following into the extra.less template in your style, with the numbers you need to set.

CSS:
.menu
{
    min-width: 140px;
    max-width: 320px;
}
 
It is not a style variable but set in core_menu.less template.

You can put the following into the extra.less template in your style, with the numbers you need to set.

CSS:
.menu
{
    min-width: 140px;
    max-width: 320px;
}

Thanks but unfortunately this doesn't work well for multi-level menus..
 
I don't have any multi-level menu to set up. If you could show me a sample multi-level menu working in a website with xenForo forum, then I can try to help for that too.

I use @Russ 's code for creating multi-level drop-down menu.

 
Top Bottom