How to change the width of mega sub menus

To adjust the width of the mega menu, go to Mega Menu > Menu Themes.

The width of the mega menus are defined by the ‘Panel Width’ setting.

There are 3 types of value you can use for this setting:

Option 1. Percentage Width

Entering a percentage width will make the sub menus display at a width relative to the menu itself.

For example: 100% (default)

Percentage width menus will always be aligned to the left hand edge of the menu bar. In most cases, the only percentage width you should use is 100%.

Option 2. Fixed Width

To fix the sub menu at a certain width, regardless of screen size, enter a pixel based value.

For example: 500px

Fixed width sub menus will always be aligned to the left hand edge of the parent menu item. You can adjust the alignment using the “Sub Menu Align” option in the parent menu item options.

Option 3. Dynamic Width (jQuery/CSS Selector)

Dynamic widths can be used to automatically align and size the sub menu to match an existing element on the page.

To make use of this feature you’ll need to find the HTML element that wraps your page content and use the ID or class of the element (in the form of a jQuery selector) as Panel Width setting.

For example: #container, body, #page, .content.

In the example above we set the Panel Width (Outer) to “#content”. This value will change from theme to theme, so you will need to right click on the page and go to “Inspect” to find the correct class or ID to use as your Panel Width.

Stretching the menu to fill the browser width

In the example below we have set the Outer width to “body” (to fill the width of the page) and the Inner Width to “#content” (to line up with the existing page content).

Custom Sub Menu Widths

With Max Mega Menu Pro it is possible to set a sub menu width per menu item. This value will override the general theme setting.

For example, you could set one sub menu to be 400px wide and another to be 700px wide.

Custom sub menu width

Custom Sub Menu Width

This functionality is part of Custom Item Styling.

FAQ:

Can the sub menu width automatically adjust to fit the content?

In short, no.

All HTML elements must have a width specified at some point. An HTML element may inherit the width from its parent (e.g. you can say “this element should be 50% of the width of its parent”), or you might directly specify a width (e.g. “this element should be 600px wide”).

You cannot say “work out the ideal width for this element and apply it”. HTML & CSS do not understand what a human’s idea of the ideal width would be.

Related Articles