change style of the custom menu?
-
Edit your child theme css to make the changes you want to implement.
Without knowing what you are trying to do, it’s impossible to give a specific answer.
Mod
True. Custom menus can be used in a variety of places, so it’s really a matter of where you are using it.
Do try Firebug, though.
Well, I mean it depends on WHAT you are wanting to style. There are a few different elements to the footer nav menu.
If you want to style the entire footer menu, then something like this:
.footer-menu-wrap {
float: left;
font-size: 14px;
margin-right: 20px;
}If you want to style just the title areas:
.footer-menu-wrap li {
display: inline-block;
margin-left: 10px;
padding-left: 10px;
vertical-align: top;
}If you want to style the submenus:
.footer-menu-wrap ul.sub-menu {
border-left: 1px solid #222222;
list-style: none outside none;
margin-top: 5px;
padding-left: 5px;
}Start with Ken’s suggestion above. Get familiar with the Mozilla Firebug addon for the Mozilla Firefox browser. Use it to identify the CSS you need to adjust.
Mozilla Firefox:
http://www.mozilla.org/en-US/firefox/fx/
Mozilla Firebug:
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.