Thank you so much. That’s perfect. I’ve already applied it to my live site.
Here’s the CSS that was added to the section, in case anyone wanted to see that:
$el .x-bg .x-bg-layer-lower-color {
background: hsl(148, 21%, 64%);
background: -moz-linear-gradient(90deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
background: -webkit-linear-gradient(90deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
background: linear-gradient(90deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="hsl(148, 21%, 64%)",endColorstr="hsl(90, 28%, 55%)",GradientType=1);
}
@media (max-width: 979px) {
$el .x-bg .x-bg-layer-lower-color {
background: hsl(148, 21%, 64%);
background: -moz-linear-gradient(180deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
background: -webkit-linear-gradient(180deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
background: linear-gradient(180deg, hsl(148, 21%, 64%) 50%, hsl(90, 28%, 55%) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="hsl(148, 21%, 64%)",endColorstr="hsl(90, 28%, 55%)",GradientType=1);
}
}
Again, thank you!