Hello everyone, I hope the question is both relevant and we can find a solution to my problem.
I have a website where I’ve been able to post a background image across the entire website using the following code:
In base.css
#MainContent {
background: transparent !important;
}
body.gradient {
background: url(“https://cdn.shopify.com/s/files/1/0615/9820/4089/files/WhiteBlue_Sky.png?v=1660511544”) no-repeat center center fixed !important;
background-size: cover !important;
background-attachment: fixed;
background-blend-mode: overlay;
background-repeat: repeating-linear-gradient;
}
.gradient {
background: transparent !important;
}
The code above produces the following results:
I would like for the following section to be in the original color that is specified:
Current:
Original:
My website is https://delicias-colombianas-gainesville.myshopify.com/
If anyone could help me, it’d be greatly appreciated.
Thank you



