I have the following formatting on my horizontal WordPress menu. It works great.
.menu {
width: 1100px;
margin: 0 auto;
position: relative;
z-index: 50;
list-style: none;
}
In the footer of my theme I am trying to use a vertical menu through the WordPress menu setup. When I put the menu in the footer via a widget I get this:
<div class="menu-footer-container"><ul id="menu-footer" class="menu">
Because the UL class is menu it picks up the above horizontal css and makes the menu horizontal in my footer. How do I add CSS to make the menu vertical in my WordPress footer?