How to add a 'New' label next to the 'Bundles' menu item?

How can we add a “NEW” label beside our “BUNDLES” menu item?

Please see below for an example

Our site is www.uncertn.com

1 Like

It needs to change code in header.liquid file to add this new tag

Hi @UCJustin ,

I manage to do this one, but i need to figure it out more how to inline in the bundles.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
#dropdown-715363b58a50283505792791d56d0723 > div > div > div > div:nth-child(4) >
a.navlink.navlink--child:after {
    display: inline-block;
    content: "New";
    border: 1px solid black;
    border-radius: .5px;
    padding: .5px;
}

Result:

I hope it help.

Can you edited it to be beside the text instead?