Change color for only one top level menu on prestige theme

Topic summary

Request to change the color of only one top‑level menu item (specifically the second item) in the Prestige Shopify theme’s header navigation, without affecting other menu links.

  • Clarifies need for targeted styling of a single “top‑level” (primary header) link.
  • Materials provided: a Shopify preview URL and a screenshot to identify the exact menu item and current appearance (attachment central to understanding the target).
  • Context: Labeled as customization/design/troubleshooting, implying a theme‑level adjustment may be required.
  • Status: No solutions or instructions posted yet; the request remains open.
  • Outstanding question: How to implement this change in Prestige (e.g., via theme settings or precise custom code/CSS selectors) so only the specified menu item’s color is changed.
Summarized with AI on December 18. AI used: gpt-5.

Hello Everyone,

We would like to change the color of the sec top-level menu,

thanks in advance,

url : https://y5r62uwtd30qwt40-87349559639.shopifypreview.com

Hello,

Thank you for reaching out! To change the color of the “Christmas Sale” menu item on your Shopify store, you can add this custom CSS code:

/* Change color of “Christmas Sale” menu item */
.header__menu-item:nth-child(2) a {
  color: #FF0000 !important; /* Replace with your desired color */
}

Once you’ve added this, please send a screenshot of where you are in the progress so I can confirm everything is set up correctly.

If you’re unable to do it yourself, no worries, I’d be happy to assist you and make the change for you.

You can add this code to Custom CSS in theme settings

a[href="/pages/christmas-sale"] { color: red; }

1 Like

Hi @5611632
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
a[href="/pages/christmas-sale"] { 
  color: red !important; 
}
</style>

Results:

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!

working but its effect the announcement bar text

1 Like

Please update the code to this.

.header__primary-nav-item a[href="/pages/christmas-sale"] { color: red; }

Thanks so much its working perfect

but when i click on it its back to black until its jump to the page

I cannot see the issue that you mentioned

i fix it and i add another code