Narrative Theme - Change Page Background Color

Hello Community,

I am looking to change the background of one of my Pages (“Our Story”) on Shopify Narrative theme.

How can I code that so that it’s not the custom theme color?

https://www.shopmadebyearth.com/pages/our-philosophy

PW: preech

Thanks.

1 Like

@KurtM - it needs custom css, what color you want? change in the code, for now its black

#our-story-made-by-earth .content-for-layout{background-color: #000;}

1 Like

@KurtM

Please add the following CSS code to your assets/theme.scss.liquid bottom of the file.

#our-story-made-by-earth .content-for-layout{background-color: #000 !important;}

Thanks!

1 Like

@KurtM

Welcome to the Shopify community!
Thanks for your good question.

Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.

#our-story-made-by-earth .content-for-layout{

background-color: #000 !important;

}

If this post is helpful,Kindly Like and Accept this as a solution.

1 Like

Thank you!

1 Like

Thanks!

Many thanks!