Home Forums WoodMart support forum Dropdown menu with HTML block issue Reply To: Dropdown menu with HTML block issue

#190279

Hello,

Thank you very much for choosing our theme and for contacting us.

The sub-menu block is positioned absolutely. It means that you can limit the width, however, you cannot align center with margin: auto;

You can slightly move from the left and get the result like this
https://prnt.sc/s6pqy0

If you accept, you can add the code to the Theme Settings > Custom CSS > Global:

body .menu-item-design-full-width .sub-menu-dropdown{
	max-width:1000px;
	left:30%;
}

Best Regards