Home Forums WoodMart support forum Change the label on the super menu

Change the label on the super menu

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #718521

    raeelio
    Participant

    How do I change the labels on this menu? I want to move these (all and hot) labels to the right side of this menu, like in the picture I sent you.

    Attachments:
    You must be logged in to view attached files.
    #718540

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Try to add this code to the Theme Settings > Custom CSS:

    .wd-sub-menu li > a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .wd-sub-menu li > a .menu-label {
        position: static;
        margin-top: 0;
        margin-left: 0;
        align-self: center;
        display: inline-flex;
    }

    Best Regards

    #718564

    raeelio
    Participant

    It’s already on the right, but why are there extra symbols below?

    Attachments:
    You must be logged in to view attached files.
    #718578

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Try to add this code to the Theme Settings > Custom CSS:

    .wd-sub-menu .menu-label:before,
    .wd-sub-menu .menu-label:after {
        display: none;
    }

    Best Regards

Tagged: 

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