I can't change the margin color on my site

Hello! I cannot figure out why the margin color is different on my site?

I want it to be all white - whenever I add margin to certain sections, I see this cream color, which is not in my color scheme?

Any ideas? Thanks

https://hudalrul7v3yg264-8134245.shopifypreview.com

HI @JayKay89

Your section color is picked up from body background color from

body {
    background-color: #F4EFED;
}

and that is probably set in theme settings.

You can override it in several ways. First, on the section level, if there is no setting for the Color schema or background color, you can add CSS in Custom CSS part

{
    background: #fff;
}

Or if you want for all countdown sections, most likely you do not want but still :

.countdown-section {
   background: #fff;
}

unfortunately that didn’t seem to do the trick. But maybe I added the code to the wrong section?

Hi @JayKay89 , kindly provide your store URL please and if it is password protected, please share the password as well. Thanks

Hey there! Here’s the link: https://g8e45qhpuecinkpn-8134245.shopifypreview.com

Thanks so much!