How can I make the menu in the footer of my site display inline and centered in the available space
http://www.visualbridgecommunications.com/ ?
password to view development site is “Happy Days 08”
thank you
gary
Hey Gary!
Try adding this code to the Quick CSS:
#top #footer ul#menu-main-navigation li {
display: inline-block;
float: none;
clear: none;
}
#top #footer .widget ul.sub-menu {
display: none;
}
#top #footer .widget ul {
text-align: center;
}
#top #footer .widget ul#menu-main-navigation a {
padding: 6px 10px;
}
Cheers!
Josue
that worked. thanks!