how do i make the "winter sale" red in the menu

hi, i want to turn the “winter sale” button red in the menu thats in the picture. how can i do it?

thanks!

site link- https://malboshim.com/

@Anonymous_d65591fabfe73ef1cdbdaa0a1489d355 You need to add this code in the theme files. For which you need to go to Online Store > Actions (Active theme) > Edit Code > Assets, under assets add the code at the bottom of base.css file.

.header--top-center .header__inline-menu>.list-menu--inline li:nth-child(5) a{color:red;}

Hi @Anonymous_d65591fabfe73ef1cdbdaa0a1489d355

Try this one.

  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, style.css or theme.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:
a#HeaderMenu-winter-sale {
    color: red;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @Anonymous_d65591fabfe73ef1cdbdaa0a1489d355

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

Result:

topnewyork_0-1738911191752.png

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!