Hello! You helped me make one column for the footer (instead of 4) (not sure how to reference the thread, but your reply was #64418), but now the menu that I have added is not centered horizontally under the page. I have tried CSS such as “margin: 0 auto” and “text-align: center” and the menu will not budge. Any suggestions on getting it centered? Thanks!
Hi @bzsim8,
I hope you are well today and thank you for your question.
To make it center aligned you can try adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Shapely Options -> Other
.footer-widget-area .footer-widget .widget_nav_menu {
display: table;
margin: 0 auto;
}
Best Regards,
Movin