How to change product description color for prestige theme

Topic summary

A user needed to change the product description text color to white across 3,500+ products in the Prestige theme, seeking an automated solution instead of manual editing.

Solutions Provided:

  • GemPages support recommended editing the theme code by accessing Online Store > Theme > Edit code, opening the theme.liquid file, and pasting custom markup before the </head> tag.

  • PageFly-Victor suggested a CSS-based approach: Navigate to Online Store > Theme > Edit code > Assets > theme.css, then add:

.ProductMeta__Description * {
  color: #fff !important;
}

Outcome:
The issue was resolved successfully. The user confirmed the solution worked perfectly, though it’s unclear which specific method they implemented.

Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

I have over 3,500 products with color text on all of them and I’m trying to find a way to change the product description color to white instead of manually changing it. I have the prestige theme

Store: WWW.Naughtyftime.com

Hello @Carxn7654 ,

It’s GemPages support team and glad to support you today.

I would like to give you the recommendation to support you so kindly follow the steps below:

  1. Go to Online Store > Theme > Edit code of your current theme

  1. Open your theme.liquid theme file

  2. Paste the below code before


If you require any further information, feel free to contact me.

Best regards,
GemPages Support Team

Hi @Carxn7654

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Theme.css

.ProductMeta__Description * {
    color: #fff !important;
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

Thank you so much! Works perfectly!