StoreVilla
Fix Residual Theme Styling
Residual theme styling will affect the mobile menu, making it impossible to open/close on some screen widths, and inheriting font colours from the theme stylesheet.
To fix these issues, first create and activate a Child Theme.
In the child theme functions.php file, add the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function storevilla_primary_navigation() { ?> <nav id="site-navigation"> <div class="store-container clearfix"> <?php wp_nav_menu( array( 'theme_location' => 'storevillaprimary' ) ); ?> </div> </nav><!-- #site-navigation --> <?php } |