Site logo

Archived topic

Separate container background

6 replies · Started by Former User on April 23, 2019

Viewing posts 1–7 of 7

I have separate containers selected and in the customizer I have backgrounds (body and container) set to #fff. However, outside of the containers is showing a grey background. Is there a way to get rid of this grey background? I tried some CSS but it didn't work.

Hi there,

Any chance you can disable the maintnance mode so I can see where the color is coming from?

Let me know :)

Should be off now. Sorry about that!

Something is adding a linear gradient background to the body:

body {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #222;
    background: #d2d3d5;
    background: -moz-linear-gradient(-45deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
    background: -webkit-linear-gradient(-45deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
    background: linear-gradient(135deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d2d3d5',endColorstr='#fafafa',GradientType=1);
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

I can't quite tell from where as there is a caching plugin activated.

If you didn't add that, try #1 here to eliminate any plugin conflicts first:
https://docs.generatepress.com/article/debugging-tips/

Let me know :)1

I deactivated WP Rocket and it works fine. I cleared the cache and a few other things but nothing is working unless I deactivate it entirely. Any suggestions?

Never mind, I figured it out. I deactivated the setting for WP user cache and it worked. :)

Awesome :)

This archived topic is closed to new replies.