Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DigitalEssence/6b651bd3ee75aa470dbf to your computer and use it in GitHub Desktop.
Save DigitalEssence/6b651bd3ee75aa470dbf to your computer and use it in GitHub Desktop.
WordPress - Enfold - CSS - Add triangle to active menu items
//WordPress - Enfold - CSS - Add triangle to active menu items
.current-menu-item a:after {
content: ' ';
width: 0px;
height: 10px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 10px solid #949400;
display: inline-block;
position:absolute!important;
bottom:0px!important;
left:40%;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment