Skip to content

Instantly share code, notes, and snippets.

@pro-beaver
Last active January 15, 2017 14:53
Show Gist options
  • Save pro-beaver/c8db4c62c315bf51efa18c7acca70a7f to your computer and use it in GitHub Desktop.
Save pro-beaver/c8db4c62c315bf51efa18c7acca70a7f to your computer and use it in GitHub Desktop.
Add arrow to menu items with sub-items in Beaver Builder theme
/**
* Add arrow to menu items with sub-items in Beaver Builder theme
*
* @author Davinder Singh Kainth
* @link http://probeaver.com/?p=726
*
*/
.nav li > a:after {
color: inherit;
content: "\f107";
font-family: FontAwesome;
margin-left: 3px;
float: right;
vertical-align: middle;
}
.nav li > a:only-child:after {
content: '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment