Change Opacity On Product Descriptions And Page Texts - DAWN Theme

Topic summary

Main issue: In the Dawn theme, product descriptions and page text appear too translucent; the requester wants fully opaque, full-color text.

Proposed fix: Edit the theme’s CSS to force a darker text color.

  • Path: Shopify Admin β†’ Online Store β†’ Theme β†’ Edit code.
  • Files to check: base.css, theme.css, styles.css, or theme.scss.liquid.
  • Add at the bottom: body:has(.shopify-policy__container) { color: #050505 !important; }

Scope: The provided selector applies when the page contains .shopify-policy__container, setting text color to near-black (#050505) under that condition.

Media: Screenshots illustrate the faded text issue and where to access the code editor.

Status: No confirmation from the original poster that this resolves text opacity across all desired areas; solution not yet marked as resolved.

Summarized with AI on December 27. AI used: gpt-5.

Hi @ManuelH ,

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file β†’ Save

body:has(.shopify-policy__container) {
    color: #050505 !important;
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes: