How to add the triangle bullet to drop downs and sidebar menus?
https://s3.amazonaws.com/screenshots.screencast-o-matic.com/screenshot/u/mNG/1493334472911-64919.png
Hey cptnem0,
For dropdowns, go to Appearance > Menus, set a menu item as a Mega Menu, then drag another menu item under it which will serve as the title for the Column, then drag the menu items under it that would show as submenus. Here is a screenshot of how it should look like: http://imgur.com/a/R3J0o
As for the sidebar menus, try adding this in Quick CSS (located in Enfold > General Styling):
#top .widget_nav_menu li {
position: relative;
}
#top .widget_nav_menu li:before {
content: '';
display: block;
border-top: 3px solid transparent !important;
border-bottom: 3px solid transparent !important;
border-left: 3px solid #333;
position: absolute;
left: -10px;
top: 15px;
}
Hope this helps :)
Best regards,
Nikko
Thanks for reply.
1) I dont want to use mega menu
2) I only want to add triangle style to my drop down in regular main nav drop down.
See screenshot: http://screencast-o-matic.com/screenshots/u/mNG/1493412540086-25353.png
Here is the solution in case anyone is trying the same.
#top .av-main-nav ul li a:before
{
content: '\25B8';
font-family: 'entypo-fontello';
}