Home Forums WoodMart support forum Vertical sticky navigation – Label should appear before expanding the menu

Vertical sticky navigation – Label should appear before expanding the menu

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #515191

    Jeriss Cloud Center
    Participant

    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.
    #515301

    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.

Viewing 2 posts - 1 through 2 (of 2 total)