KurtM
January 22, 2022, 5:10am
1
Hi-
I am trying to change the background of my blog pages. Currently it uses the main background color from Theme Settings, which is deep purple. I’d love to be able to change it to a white background. Any input will be greatly appreciated!
My website is www.shopmadebyearth.com
password: preech
@KurtM - if you want like the screenshot below then please add this css and check, this will work on blog pages only
.template-article .content-for-layout{background-color: #ffffff;}
.template-article .site-footer{background-color: #ffffff;}
.template-article .comments-form-wrapper{background-color: #ffffff;}
.template-article .comments-form-wrapper .input[type=text]{border: 1px solid #000;}
span.article__date.text-small--uppercase {
color: black !important;
}
div#shopify-section-article-template {
background-color: white !important;
}
input#CommentAuthor {
background-color: #ec9d39 !important;
color: white !important;
}
input#CommentEmail {
background-color: #ec9d39!important;
}
textarea#CommentBody {
background-color: #ec9d39 !important;
}
@KurtM
Navigate to Online Store->Theme->Edit code
Asset->/theme.css or theme.scss ->paste below code at the bottom of the file.
Ok, Please add this class to theme.scss
.site-footer–parallax .content-for-layout
{ background-color:#fff ; }
KurtM
January 22, 2022, 10:47pm
7
Thank you! Worked perfectly.