As said in the title. Where and how do I remove the page navigation on top of the page above the header?
Thanks in advance ;)
As said in the title. Where and how do I remove the page navigation on top of the page above the header?
Thanks in advance ;)
the likely location to find the navigation code is in header.php;
make a backup copy before editing.
remove:
<div id="button"><textbutton>Show Menu</textbutton><textbutton style="display:none;">Hide Menu</textbutton></div>
and:
<div id="nav">
<ul class="nav">
<?php wp_nav_menu( array('theme_location' => 'header-nav', 'depth' => -1, 'menu_class' => 'nav' )); ?>
</ul>
</div><div id="clear"></div>
(untested)
Thank you so much...
Just found another way of hiding de page navigation to... Via the 'Exclude Pages from Navigation' plugin. That did the trick for me...
You must log in to post.