Why is the entire site background only displaying a color and not the image

I’m using this CSS:
body {
background-image: url(https://wishcandle.com/wp-content/uploads/2013/06/parchement-paper-med.jpg);
background-repeat: repeat-y;
}

you can see on this page, https://wishcandle.com/about/
but I’d like the background to be like this, https://wishcandle.com/how-the-wish-candle-works/

can you let me know what I may be overlooking?
thanks, https://wishcandle.com/

Adam

Hi Adam,

Thanks for reaching out.

It has existing CSS like this

.x-root .site, .x-root .x-site {
    flex: 1 1 auto;
    position: relative;
    width: 100%;
    min-width: 1px;
    background-color: #f3dab1;
}

Your CSS works but just covered, in that case, please add this CSS as well

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

Cheers!

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