Edit the background of a page

I am a beginner in css, I use in Cornerstone with your Integrity theme. It automatically sets the background to white. I would like it to be transparent so that my background image of my site appear. How do I set up a transparent background?
Can you tell me if I need to change the css code or I have to change it

1 Like

Hello,

Can you translate your question to English? This way our team can answer it as soon.

OP and myself are (almost certainly) looking to change the content area background for any stack from #fff to rgba(0,0,0,0). Please advise.

Hi,

You can add this in X> Launch > Options> CSS

.site, .x-site {
    background-color:transparent;
}

If that doesn’t help kindly provide us your site url so we can take a closer look.

Thanks

Hello
.site, .x-site {
background-color:transparent;
}
THIS CODE DOES NOT WORK

My url : http://cheffois.com

Hi again,

I tried to check your site but the under construction page is enabled, can you please disable it for a while so we can take a look at your site? In the mean time try replacing the previous code with this:

.entry-wrap {
    background-color: transparent !important;
}

Hope this helps!

ok it’s disabled

Hi There,

Please add the following code to Theme Options CSS

.x-boxed-layout-active .site, .x-boxed-layout-active .x-site {
     background: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

Hope it helps!

super thank you all works correctly

Glad it worked.

Cheers!