Skip to content

Instantly share code, notes, and snippets.

@deeman
Last active July 9, 2018 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deeman/2bb77edfb81a87ea4b4d248a59a25d49 to your computer and use it in GitHub Desktop.
Save deeman/2bb77edfb81a87ea4b4d248a59a25d49 to your computer and use it in GitHub Desktop.
Genesis Framework: Adding nav menu indicators using Font Awesome.
//* Enque and 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' );
}
/* CSS for 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