Changing color of text ONLY on all product pages

Topic summary

A user needed to change text color to #231f1e exclusively on product pages for a Shopify store using the Craft theme.

Another user provided a CSS solution:

  • Add specific CSS code to the bottom of base.css
  • The code targets .tee-customize-main-form and input.tee-quantity-input elements
  • Uses !important flag to ensure the color override applies

Status: Resolved. The original poster confirmed the solution worked and thanked the contributor.

Summarized with AI on October 26. AI used: claude-sonnet-4-5-20250929.

Hi there,

https://v4paxk-5d.myshopify.com/products/choose-your-song-t-shirt?variant=56337231249789&pb=0

Craft theme

I’m trying to change the color of the text only on my site’s product pages to #231f1e

Would anyone be able to provide me the right code to achieve this?

Thanks a million

Alex

Hello @AlexMcGann ,

Add this css in base.css at bottom

.tee-customize-main-form, input.tee-quantity-input {
    color: #231f1e !important;
}

Regards
Guleria

1 Like

Really appreciate it Guleria thank you

1 Like