How to change the Pipeline theme background color?

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

Hi, UmairA. Why the top and footer does not change?

Hey again @dospeus ,

Are you able to provide your store URL so I can take a closer look? Thanks

https://dospeus.myshopify.com/

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.