Hi,
I want to change Pipeline theme background color from white to my selected color. how should I change the code?
Hi,
I want to change Pipeline theme background color from white to my selected color. how should I change the code?
Hey there @dospeus ,
Yes, you can do this. Add the following code to your theme.scss.liquid file.
body {
background-color: #D3D3D3 !important;
}
Change the value β#D3D3D3β to any value like βredβ or β#C3C3C3β.
Thanks,
I see that background changed but if I want the same color also for a footer and header need to add extra codes or there is same code for all of this.
Hey again @dospeus ,
You are welcome. Also, add the following code to change header and footer background-color
#shopify-section-header .site-header, .site-footer-wrapper {
background-color: #D3D3D3 !important;
}
If that solves the problem, consider giving a thumbs up and Accept solution. Thanks
Hey again @dospeus ,
Are you able to provide your store URL so I can take a closer look? Thanks
Hi UmairA,
Did you check?
Hey, hope all is well!
Do you know how to change entire background (including header) on all pages to picture (jpeg)? Thanks.