How to fix faded text color on pages of website?

Topic summary

A user working with the Dawn theme reported two styling issues on their e-commerce site:

Issues identified:

  • Faded text color appearing on About and FAQ pages
  • Collapsible row titles on a product page needing bold formatting and specific color (#103C8B)

Solution provided:
A CSS code snippet was shared to address both problems:

  • Targets .accordion__title elements
  • Sets font-weight: bold
  • Applies color #103C8B

Status: Resolved. The user confirmed the solution worked perfectly.

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

Using Dawn theme. URL: https://www.empiricalwater.com

  1. Notice that if you click on About or FAQ, those pages use a faded text color. I need the text color to be #103C8B.

  2. How can I make the collapsible row titles in bold on this page? https://empiricalwater.com/products/truth-serum

Thanks!

Hello @empiricalarby

Its Artzen Technologies! We will be happy to help you today.

Add this code to your CSS file --:

.product__info-wrapper .accordion__title {
    font-weight: bold;
}
.rte {
    color: #103C8B;
}

Let me know if need further assistance
Regards,
Artzen Technologies

1 Like

Thank you, worked like a charm.