Hi Guys,
I’m doing a website that because the numbers of items on the main menu, it breaks in 2 lines what is fine, but the menu stays aligned to the left, what the clients wants is the menu aligned to the center. When I use the “Content Element” “Fullwidth Sub Menu” and select it to be aligned to the center, it shows exactly as the client wants, I tried to add “text-align: center” to the main menu css tags without success could you guys help me with that please.
Many thanks
Hi chanleo!
Remove the floats and set them to display inline-block like so.
nav.main_menu li {
float: none !important;
display: inline-block;
}
Regards,
Elliott
Hey Eliot, many thanks