• I created a Twenty Ten child theme and I’ve worked out a lot of the stylings. At some point along the way I edited my theme not to show the Navigation Menu, but I’ve decided I want it back, except I can’t figure out how to do that.

    Under Menu -> Access I put display: block, but that does nothing, and I don’t have any widgets that are overriding the Nav Menu (I think that’s how I got rid of it in the first place).

    my website is https://www.wastedonsteak.com

    Any advice would be much appreciated!

Viewing 1 replies (of 1 total)
  • You have display:none for #access in css, which is hiding menu. In addition to that, your menu is empty, so you have something in header template blocking menu.

    In header.php find this line: <div id=”access” role=”navigation”> and check if you have menu few lines below it. Menu line in original theme is <?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) ); ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Twenty Ten Menu’ is closed to new replies.