This code is working great but the multi-row section is also having this background reapplied to the section and it looks a little off compared to the rest because it is doubling up on the image (see image below). Is there a way to make this multi-row section background ‘transparent’ so that the main image is just showing the background like the rest of the sections?
That will be the back ground of your entire store cause you used the gradient selector.
Try this one to change the background of the sections.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.image-with-text__content.image-with-text__content--top.image-with-text__content--desktop-left.image-with-text__content--mobile-center.image-with-text__content--adapt.content-container.gradient.color-background-1 {
background: white !important;
}
.image-with-text__media.image-with-text__media--adapt.gradient.color-background-1.global-media-settings.media {
background: white !important;
}