<div class="grid col-540">
<?php if (has_nav_menu('footer-menu', 'responsive')) { ?>
<?php wp_nav_menu(array(
'container' => '',
'fallback_cb' => false,
'menu_class' => 'footer-menu',
'theme_location' => 'footer-menu')
);
?>
<?php } ?>
</div><!-- end of col-540 -->
to this
<div class="grid col-940">
<?php if (has_nav_menu('footer-menu', 'responsive')) { ?>
<?php wp_nav_menu(array(
'container' => '',
'fallback_cb' => false,
'menu_class' => 'footer-menu',
'theme_location' => 'footer-menu')
);
?>
<?php } ?>
</div><!-- end of col-940 -->
Add this to the style.css
.footer-menu {
text-align:center;
}
.footer-menu li {
display:inline;
float:none;
}
.footer-menu li a {
display:inline-block;
}
nathang wrote:Thank you VERY much. Worked like a charm.
It looks like you're new here. If you want to get involved, click one of these buttons!