Hi, I want to see if it’s possible to align the menu text to the bottom so there is not so much gap between the location where you hover to display the menu fly-out and the first item in the fly-out.
How can I accomplish this? I’ve tried different CSS changes but cant seem to find the right one.
Thanks,
Brian
Hey aecad!
Try adding this to your custom CSS.
.menu > li > a > .avia-menu-text {
position: relative !important;
top: 30px !important;
}
If you have your header set to be sticky then add this as well.
.header-scrolled .menu > li > a > .avia-menu-text {
position: relative !important;
top: 0px !important;
}
Cheers!
Elliott
Thanks Elliot!
Now is it possible to also shrink the menu hover area so that the area where the cursor enables the fly-out menu is only where the text is?
After the above change, the fly-out menu will be displayed even when hovering at the very top of that whole menu area.
Thanks,
Brian