Hi Movin,
I would like to add arrows to the menus with sub-menus, is that possible?
Hope you’re having a good day
Anna
Hi Movin,
I would like to add arrows to the menus with sub-menus, is that possible?
Hope you’re having a good day
Anna
Hi Anna,
I hope you are well today and thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS
.navbar-nav li.menu-item-has-children{
position: relative;
}
.navbar-nav li.menu-item-has-children:after {
display: inline-block;
content: '\f107';
font: normal normal normal 14px/1 FontAwesome;
position:absolute;
top: 40%;
right: 7%;
}
Best Regards,
Movin
Thank you! it works perfectly
You are most welcome here