Narrative Theme - Change Product Page Color

Hello -

I am trying to change the background color of my product page on Narrative. How should I code that?

Website: shopmadebyearth.com

PW: preech

Thank you!

@KurtM , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.product-template{
    background-color: #6b6b6b !important;
}

You can change the #6b6b6b to any HEX color you wish.

Kind regards,
Diego

Thanks very much, @diego_ezfy !