- This topic has 5 replies, 2 voices, and was last updated 2 years, 4 months ago by .
How to make footer menu horizontal?
You must be logged in to reply to this topic.
Hi there, how can I make my secondary menu which is my social media icons menu, show horizontally instead of vertically in the footer? as I can’t find an option to show the horizontally, and they look ugly vertically, thank you
Hello,
To change the alignment play around with the Icon Alignment and Icons per row settings in the Social Media Widget located in the Footer sidebar.
You will need to use the following CSS code,
#wrapper-footer .widget_nav_menu ul {
display: inline-block;
}
#wrapper-footer .widget_nav_menu ul li {
width: auto;
}
Add it in your Admin Dashboard > Appearance > Customize > Additional CSS.
You must be logged in to reply to this topic.