Colormag
Remove duplicate mobile toggle button and fix residual styling
Add the following to the functions.php file of your child theme.
1 2 3 4 5 6 7 8 9 |
function colormag_below_header_bar_display() { ?> <nav id="site-navigation"> <div class="inner-wrap clearfix"> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </div> </nav> <?php } |