How to set background color?

I went into theme options and set the background color to what it shows in pic below

However when I look at this page the background color is not set to that, just wonder Why?
https://www.gunstocarry.com/ny-demo-3/

Hi There,

You can’t see the background color because of this default CSS:

.x-container.main:before {
     background: #fff;
}

Please change it transparent and add it under Theme Options > CSS:

.x-container.main:before {
     background: transparent;
}

Hope it helps :slight_smile:

thanks Thai, tried that but page just went black with background color not showing through.

Can I just change the background color on the one page, that is the URL I sent you?

Hello There,

To change the background color to one specific page/post only, please edit your page back in Cornerstone and insert the following custom css in the settings tab, Settings > Custom CSS

.x-container.main:before {
     background: transparent;
}

And then make sure that your sections or elements does not have any background colors.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.