WP Coupon
Menu Theme Setup
Go to Mega Menu > Menu Themes. Set the following:
Menu Bar > Menu Height: 56px
Mobile Menu > Toggle Bar Height: 56px
Mobile Menu > Force Full Width: Enabled and Selector set to:
.container .inner
Fix Mobile Menu
Copy the themes header.php file to your child theme.
In the header.php file, find:
1 2 3 4 |
<div id="nav-toggle"><i class="content icon"></i></div> <ul class="st-menu"> <?php wp_nav_menu( array('theme_location' => 'primary', 'container' => '', 'items_wrap' => '%3$s' ) ); ?> </ul> |
Replace with:
1 |
<?php wp_nav_menu( array('theme_location' => 'primary', 'container' => '', 'items_wrap' => '%3$s' ) ); ?> |