Changing the color of navigation item for a drawer layout

Hi, I need to change “Holiday” in the main navigation to Hex #b9354a for both mobile and desktop.

We used the Prestige theme. See attached.

Thanks!

1 Like

Hi @ErikaL

Please, share your store URL. Thanks!

inslee-ivey-llc.myshopify.com

Thanks for the info, check 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:
.header-sidebar__linklist a[href="/collections/holiday"]{
    color: red;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

Hi, thank you for your help! I added it to the bottom of assets >theme.css, and it’s not working for me :disappointed_face:

Any suggestions?

In your theme.css your missing closing bracket.

This is now.

Add the closing bracket here.

It work but below the 640px screen.

This is 500px wide screen.

After adding the closing bracket save it.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

Got it, Thank you!!

1 Like