Can you help me center the dropdown menu from the parent menu please, I was using Elementor in wordpress. I tried this css code but it does nothing:
.header-menu {
left: 50%;
right: auto;
text-align: center;
transform: translate(-50%, 0);
}
2
Answers
Quoting from here:
Add a custom CSS class name to your Elementor menu ex: full_center_dropdown
This works for me:
In the Nav Menu add the following CSS:
.elementor-nav-menu–dropdown > ul
{
text-align: center!important;
}
In the Edit Nav Menu first tab (Content) under disposition > Mobile Dropdown > select: Align = "Center"
And that’s it!