Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@srikat
Last active October 29, 2016 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save srikat/42a96dcb7c200123f373ed4222d3c602 to your computer and use it in GitHub Desktop.
Save srikat/42a96dcb7c200123f373ed4222d3c602 to your computer and use it in GitHub Desktop.
How to move Secondary Navigation below Slider in Outreach Pro. http://sridharkatakam.com/move-secondary-navigation-slider-outreach-pro/
// Remove the secondary navigation menu on front page
add_action( 'genesis_header', 'sk_conditional_secondary_nav' );
function sk_conditional_secondary_nav() {
// if we are not on front page, abort.
if ( !is_front_page() ) {
return;
}
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
}
.nav-secondary {
background-color: #111;
}
.nav-secondary .wrap {
margin-bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment