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.
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.
@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;}
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!
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.
Thank you!
Thanks!
Many thanks!