• I am attempting to remove the top navigation from my site and only utilize the left navigation. How can I hide the top navigation entirely? Please let me know what steps to take, any code to implement, and where/how it should be implemented!

    Thanks

Viewing 1 replies (of 1 total)
  • you could simply use CSS via a ‘custom CSS’ plugin to hide the top menu;
    example:

    #container3 .navtop { display: none; }

    or more elegantly create a child theme and edit header.php in the child theme, and remove this section:

    <div id="container3">
    <div class="navtop">
    <?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'fallback_cb' => 'wp_page_menu', 'container' => 'div', 'container_class' => 'navmenu', 'menu_class' => 'navmenu', 'show_home' => 'Home' ) ); ?>
    </div>
    </div>

    for details, please consider to ask your question in your theme’s forum at https://www.ads-software.com/support/theme/newbasic#postform

Viewing 1 replies (of 1 total)
  • The topic ‘Remove top navigation form NewBasic theme’ is closed to new replies.