Seller
Copy the parent theme header.php file to your child theme.
In the child theme header.php file,
Find:
1 2 3 4 5 6 7 8 |
<div id="top-nav" class="col-lg-8 col-md-12"> <nav id="site-navigation" class="main-navigation" role="navigation"> <h1 class="menu-toggle"><?php _e( 'Menu', 'seller' ); ?></h1> <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seller' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </nav><!-- #site-navigation --> </div> |
Replace with:
1 2 3 4 5 6 7 |
<div class="col-lg-8 col-md-12"> <nav id="site-navigation" class="main-navigation" role="navigation"> <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'seller' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </nav><!-- #site-navigation --> </div> |