Advertisement
grappler

Centre Menu

Sep 4th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. .table {
  2. display: table; /* Allow the centering to work */
  3. margin: 0 auto;
  4. }
  5. ul.menu {
  6. min-width: 940px;
  7. list-style: none;
  8. padding-top: 20px;
  9. }
  10. ul.menu li{
  11. display: inline;
  12. }
  13. <div class="table">
  14. <?php wp_nav_menu(array(
  15. 'container' => '',
  16. 'theme_location' => 'header-menu')
  17. );
  18. ?>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement