How can I change the section color on my Dawn theme product pages?

Topic summary

A user wants to change the background color of the bottom section on their Dawn theme product pages from white to #d9d9d9.

Initial Attempts:

  • One responder suggested adding CSS code to the base.css file, but this solution did not work for the original poster.

Working Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the Assets folder and locate base.css, style.css, or theme.css
  • Add the following CSS at the bottom of the file:
#section-shopify--template-1669378326.section-color-background-1.gradient.no-js-hidden {
  background: #d9d9d9 !important;
}
  • Save the changes

Status: The discussion appears resolved with a specific CSS solution targeting the product page section background color. A result screenshot was shared showing the implementation.

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

At the bottom of my product pages, it is white, I would like to change it to #d9d9d9, What is some code to do this?

Theme:dawn

Website:desire-online.net

1 Like

Hi @jakegrieveson

You can do that by adding this CSS code at the bottom of your base.css file

.media.media--hover-effect > img + img { opacity: 1 !important }

This did not work

Hi @jakegrieveson

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
section#shopify-section-template--19958073983266__related-products .color-background-1.gradient.no-js-hidden {
    background: #d9d9d9 !important;
}