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
A user wants to change the background color of the bottom section on their Dawn theme product pages from white to #d9d9d9.
Initial Attempts:
Working Solution Provided:
#section-shopify--template-1669378326.section-color-background-1.gradient.no-js-hidden {
background: #d9d9d9 !important;
}
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.
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
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
Try this one.
section#shopify-section-template--19958073983266__related-products .color-background-1.gradient.no-js-hidden {
background: #d9d9d9 !important;
}