I am trying to get my nav menu to center in it's div, but I can't seem to figure out how. Please take a look and help if you can. Normal text gets centered but I can't get my menu to center.
HTML:
<div id = "nav_menu_secondary">
<div id = "center_wrap">
<?php $args = array(
'theme_location' => 'secondary' );
wp_nav_menu( $args ); ?>
</div>
</div>
CSS:
#center_wrap {
margin: 0 auto;
text-align: center; }