Vertical sticky navigation – Label should appear before expanding the menu
-
When we add a label to a First-Level menu item, the label appears even when we don’t hover on the menu.
That is not good. We should not see the label as long as we haven’t expanded the menu.
The label should appear only AFTER having hovered / expanded the vertical sticky menu.
Attachments:
You must be
logged in to view attached files.
Hello,
If you need the label to appear on hover, add this class label_on_hover and add this code to the Theme settings > Custom CSS:
.label_on_hover a > span.menu-label {
display:none;
}
.label_on_hover a:hover > span.menu-label {
display:inline-block;
right:0;
top:-10px;
}
Best Regards.