• Skip to main content
  • Skip to primary sidebar

WordPress, Genesis Framework and Storefront customization tutorials

  • Archive
    • Free
    • Premium
  • Blog
  • About
  • Contact
  • Newsletter
  • Login
Home ยป Split Menu Around the Logo in Genesis Sample

Split Menu Around the Logo in Genesis Sample

Split Menu in Genesis

1) Install and activate WP Nav Plus plugin

WP Nav Plus has been designed to fill gaps in the WordPress menu system which make it difficult to accomplish many popular website design patterns.

2) Add this snippet to functions.php

//Remove original genesis header
remove_action('genesis_header','genesis_do_header');

//Crate Left / Right menu widget areas
genesis_register_sidebar( array(
	'id'          => 'header-left-menu',
	'name'        => __( 'Header Left Nav Menu', 'wpflames' ),
) );

genesis_register_sidebar( array(
	'id'          => 'header-right-menu',
	'name'        => __( 'Header Right Nav Menu', 'wpflames' ),
) );

//Create the function that split the navigation around centered logo
function wpflames_header_widgets() {

if ( is_active_sidebar( 'header-left-menu' ) || is_active_sidebar( 'header-right-menu' ) ) { 
    
    echo '<div class="row">';
	
	genesis_widget_area( 'header-left-menu', array(
		'before' => '<div class="col-lg-5 header-nav-menu header-left-menu">',
		'after'  => '</div>',
	) );
    echo '
      <div class="col-lg-2 logo">
          <img src="YOUR_IMAGE_SOURCE" alt="">
      </div>';
       
	genesis_widget_area( 'header-right-menu', array(
		'before' => '<div class="col-lg-5 header-nav-menu header-right-menu">',
		'after'  => '</div>',
	) ); 
    
    echo '</div>';
	}
}
add_action( 'genesis_header', 'wpflames_header_widgets' );


function remove_hamburger_menu_from_desktop(){
    if(!wp_is_mobile()){
        remove_action( 'genesis_header', 'genesis_do_nav', 12 );
    }
}
add_action('init', 'remove_hamburger_menu_from_desktop');

3) CSS

/*ONLY MOBILE*/
@media (max-width: 768px) {  
        .header-left-menu,
        .header-right-menu {
        display: none;
    }  
}


@media (min-width: 768px) {  
        #menu-left-menu, #menu-right-menu {
        display: flex;
        justify-content: space-evenly;
    }
}

Filed Under: Premium Tagged With: Genesis

About Gabor Flamich

I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Gabor Flamich

Hi! I'm Gabor.
I write tutorials on WordPress and WooCommerce.

MacBook

12 Essential Snippets for Genesis Developers

Subscribe to my Newsletter to view my basic collection of Genesis snippets that I use for my projects!

Sign Up for Free
  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Twitter
  • YouTube
UpdraftPlus Premium

Tags

ACF Ajax Analytics API Bootstrap Breadcrumb category CPT CSS fetch Genesis Google Maps Gutenberg HTML Isotope JavaScript jQuery loop Map Menu Parallax PHP SASS SEO SQL Storefront SVG tab tag manager tags Taxonomy Tool upsell Webpack Wholesale WooCommerce WordPress WPML

Disclosure: Some of the links in this site are affiliate links. I will be paid a commission if you use this link to make a purchase.

  • Privacy Policy / Terms of Service
© 2023 WP Flames - All Right Reserved