Greetings! I want to put a horizontal menu in the footer of a site, with submenu items listed directly under the parent menus. I know it can be done with CSS, but how? I'm stumped and can't seem to find the answer here. I looked at this thread and used the code, but the submenu items are not lining up under the parents correctly. Here's approximately how I want it to look:
Home About Services Our Team Experience
Financial Charles Reardon Transactions
Restructuring Liran Gordon Case Studies
Mergers & Acquisitions Jeffrey R. Wilson
Capital-Raising Andrew Gutmann
Principal Investing John E. McCarrick
Li Jin G. Soe
Here's the code I'm using in the footer.php template:
<ul class="bottomnav">
<?php wp_nav_menu( array('menu'=>'Main') ); ?>
</ul>
Here's my CSS:
ul.bottomnav {margin:10px 0;overflow:hidden;}
ul.bottomnav li {padding:0 30px 0 34px;list-style-type:none;display:inline;}
ul.bottomnav li a,#footernav a:active,#footernav a:visited{text-decoration:none;}
ul.bottomnav li a:hover{text-decoration:underline;}
Here's the test page: http://www.asgaardcapital.com/test/
Thanks in advance for your help!!