Hi,
is it possible to remove the line which is under a menu when I hover with the mouse?
(There is a line under the active menu, it is ok.)
See screenshot here: https://dl.dropboxusercontent.com/u/30820584/Hover_Menu_No_Line.png
Thank you,
Zsolt
Hey Zsolt!
Try adding this code to the Quick CSS:
.avia-menu-fx {
display: none;
}
.current-menu-item .avia-menu-fx {
display: block;
}
Cheers!
Josue
It works, thank you!