Horizontal Footer Menu
-
I’m trying the relatively easy task of aligning my menu items inline with eachother. My menu currently looks like this:
<section id="nav_menu-2" class="widget widget_nav_menu"> <h3 class="widget-title">Get Social</h3> <div class="menu-socials-container"> <ul id="menu-socials" class="menu nav flex-column"> <li id="menu-item-100" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-100 nav-item"><a href="https://instagram.com" class="nav-link"><i class="fab fa-instagram"></i></a></li> <li id="menu-item-101" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-101 nav-item"><a href="https://facebook" class="nav-link"><i class="fab fa-facebook"></i></a></li> </ul> </div> </section>
I’ve used the css below and several other variations to no avail.
#menu-socials li{ display: inline-block; margin-right:10px; }
The social icons display, however they appear in a vertical list. Any tips on how to get them to align horizontally?
My apologies I don’t have a live site where this can be viewed at the moment. I’m working locally!
Update: If I remove the flex-column class from this ul, the menu items display inline horizontally. Any ideas of where I can remove this class?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Horizontal Footer Menu’ is closed to new replies.