How can I alter the header text color for specific words?

Hello.

How can I change the color of the text on Header, only something special.. Not all.

Here example.. I want Etsy - orange and “make your own” - light green color.

Thanks

https://caneprint.com/

Caneprint_0-1685479433741.png

Hi @Caneprint

Please follow the instructions below

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
#shopify-section-sections--19181045612819__header > div > header > nav > ul > li:nth-child(7) > a > span {
    color: lightgreen;
}

#shopify-section-sections--19181045612819__header > div > header > nav > ul > li:nth-child(6) > a {
    color: orange;
}

Result

Crazy!!! Thank you!!:slight_smile: