Change background color for "Default product" page

How can i change background color for only “Dafault product” page?

Hi @Mark231

Would you mind to share your Store URL website? with password if its protected. Thanks!

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css or Theme.css or Styles.css

#MainContent {
   background-color: red !important;
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

hi yes… https://8dfad6-3.myshopify.com/?_ab=0&_fd=0&_sc=1 pass : 1

Thank you for the information.

Do you mean like this?

If it is 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:
#shopify-section-template--20790464741657__main div {
    background-color: #ffc159 !important;
}

#shopify-section-template--20790464741657__fab6ac98-15d9-4b83-a054-d6a2a7c56a0d div {
    background-color: #ffc159 !important;
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!