Spacious
Remove double mobile toggle Go to Appearance > Customize > Additional CSS and add the following:
|
1 2 3 |
.mega-menu-primary .site-header .menu-toggle { display: none; } |
Remove double mobile toggle Go to Appearance > Customize > Additional CSS and add the following:
|
1 2 3 |
.mega-menu-primary .site-header .menu-toggle { display: none; } |
Adding Support for Custom Fonts If your theme implements non standard, non Google Fonts (eg, TypeKit fonts) you can add them to Max Mega Menu to make the fonts available within the Theme Editor. Note: The following guide assumes your theme already includes support the custom font. To add a custom…
Read moreStep 1 Follow these instructions to add a menu location and display a menu using the Max Mega Menu Widget. Step 2 In your WordPress Dashboard, go to Mega Menu > Menu Themes, select your active menu theme and insert the following into the ‘Custom Styling’ area on a new…
Read moreAs Max Mega Menu overrides the standard WordPress function to output a menu location, no special configuration or theme setup is required. We simply need to output a menu using the standard WordPress method. Step 1: Registering a new menu location First we’ll need to create a new menu location….
Read moreStep 1. Add a new Custom Link to your menu Save the menu once the link has been added. Step 2: Open the Mega Menu settings for the new menu item Step 3: Align the menu item to the right and hide the menu text Step 4: Set an icon Step…
Read moreUnder Appearance > Editor, select ‘header.php’ on the right. Find:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<!-- Header Navigation --> <nav class="nav-container clearfix" itemscope="itemscope" itemtype="<?php echo rd_ssl(); ?>://schema.org/SiteNavigationElement"> <div class="fm-button"> <span class="fm-bar"></span> <span class="fm-bar"></span> <span class="fm-bar"></span> </div> <div class="nav-wrap flexmenu fm-lg" data-res="<?php echo $res; ?>"> <?php if ( has_nav_menu( 'main_menu' ) ) : wp_nav_menu( array( 'container' =>false, 'theme_location' => 'main_menu', 'menu_id' => 'main_menu' )); else: echo '<span class="noMainmenu">' . __( 'Define your site main menu', 'orion' ) . '</span>'; endif; ?> </div> <a href="" class="headersearch-button"><i class="icon-search"></i></a> <div class="headersearch"> <i class="icon-search bg"></i> <?php get_search_form(); ?> </div> </nav> |
Replace with:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!-- Header Navigation --> <?php if (function_exists('max_mega_menu_is_enabled') && max_mega_menu_is_enabled('main_menu')): ?> <?php wp_nav_menu( array( 'theme_location' => 'main_menu' )); ?> <?php else: ?> <nav class="nav-container clearfix" itemscope="itemscope" itemtype="<?php echo rd_ssl(); ?>://schema.org/SiteNavigationElement"> <div class="fm-button"> <span class="fm-bar"></span> <span class="fm-bar"></span> <span class="fm-bar"></span> </div> <div class="nav-wrap flexmenu fm-lg" data-res="<?php echo $res; ?>"> <?php if ( has_nav_menu( 'main_menu' ) ) : wp_nav_menu( array( 'container' =>false, 'theme_location' => 'main_menu', 'menu_id' => 'main_menu' )); else: echo '<span class="noMainmenu">' . __( 'Define your site main menu', 'orion' ) . '</span>'; endif; ?> </div> <a href="" class="headersearch-button"><i class="icon-search"></i></a> <div class="headersearch"> <i class="icon-search bg"></i> <?php get_search_form(); ?> </div> </nav> <?php endif; ?> |
Read more
When Max Mega Menu is enabled in the Hueman theme, residual styling will stop the mobile menu from functioning correctly. To fix the mobile menu for “Header” location, go to Appearance > Customize > Additional CSS and enter the following::
|
1 2 3 4 5 6 |
#nav-header .nav-wrap { height: auto !important; } #nav-header .nav-toggle { display: none !important; } |
To fix the mobile menu for “Top nav” location, go to Appearance…
Read moreUnder Appearance > Weblizer Options, paste the following in the “Custom css” box:
|
1 2 3 |
button.navbar-toggle { display: none; } |
In your WordPress Dashboard, go to Mega Menu > Menu Themes, select your active menu theme and insert the following into the ‘Custom Styling’ area on a new line:
|
1 2 3 |
#mainnav-toggle, #mainnav-icon { display: none !important; } |
In your WordPress Dashboard, go to Mega Menu > Menu Themes, select your active menu theme and insert the following into the ‘Custom Styling’ area on a new line:
|
1 2 3 |
.block.block-type-navigation { overflow: visible; } |