Hi,
I would like to have an arrow icon in the menubar for my dropdown menus, could someone tell me how to do this?
Thank you.
Hey dmxsta!
Try adding this to your custom CSS.
.main_menu .avia-bullet {
background: none repeat scroll 0 0 red;
border: 0 none !important;
display: block;
height: 20px;
left: 20px;
position: absolute;
top: 40px;
width: 20px;
}
.main_menu > div > ul > li:hover > a > .avia-bullet { display: block; }
That will display a little span when you hover over the main menu links. You can use CSS to style it into an arrow.
Regards,
Elliott