how can i add dropdown arrows on my navigation items?
screenshot – https://ibb.co/qkJNV8N
live site – http://balrajt8.sg-host.com/
Hey navindesigns,
I have added this CSS code in Enfold > General Styling > Quick CSS:
#avia-menu .menu-item-has-children > a:before {
content: '\e877';
display: block;
position: absolute;
top: 0;
right: 0;
font-family: 'entypo-fontello';
}
Please review your site.
Best regards,
Nikko
and maybe change Nikko’s code a little bit to:
#avia-menu .menu-item-has-children > a:before {
content: '\e875';
display: block;
position: absolute;
top: 0;
right: 0;
font-family: 'entypo-fontello';
}
#avia-menu .menu-item-has-children:hover > a:before {
content: '\e873';
}
This works perfect
Thanks guys!