Skip to content

Instantly share code, notes, and snippets.

@srikat
Last active January 1, 2016 08:49
Show Gist options
  • Save srikat/8120731 to your computer and use it in GitHub Desktop.
Save srikat/8120731 to your computer and use it in GitHub Desktop.
Adding nav sub menu indicators in Genesis using Font Awesome. http://sridharkatakam.com/adding-nav-sub-menu-indicators-genesis-using-font-awesome/
//* Make Font Awesome available
add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
function enqueue_font_awesome() {
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css' );
}
/* Sub menu indicators
--------------------------------------------- */
.genesis-nav-menu > .menu-item.menu-item-has-children > a:after {
content: "\f107";
font-family: 'FontAwesome';
font-size: 1.2rem;
padding-left: 0.5rem;
speak: none;
}
ul.sub-menu li.menu-item-has-children > a:after {
content: "\f105";
font-family: 'FontAwesome';
font-size: 1.2rem;
padding-left: 1rem;
speak: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment