Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2459233
Tag in the Menu
Closed

Comments

  • LucyEdward started the conversation

    Hello,

    How to put a tag (example : "NEW") in the menu like in some of your demos ? Thank you for your help.

    Best regards.

  •  2,699
    PenciDesign replied

    Hi,

    To do that, please do following steps:

    1/ Add more the CSS Classes   featured-new   like on this image to menu items you want to use "New" label.

    2/ Add more this code to Customize > Custom CSS:

    #navigation ul.menu li.featured-new>a:after {
        content: "NEW" !important;
        font-family: 'Lato',sans-serif !important;
        color: #FF2E2E !important;
        font-size: 8px !important;
        right: 3px;
        top: 3px;
        line-height: 1 !important;
        vertical-align: top !important;
        font-weight: bold !important;
        margin-left: 2px !important;
    }
    #navigation ul.menu > li.featured-new > a:after, .is-sticky #navigation.header-6 ul.menu>li.featured-new>a:after {
        line-height: 5 !important;
    }
    

    Best Regards,

    PenciDesign

  • LucyEdward replied

    Thank you, it works well.