Hi, I am trying to use different background image for section when page is viewed on mobile. Heere’s what I am doing:
1) I assign “hero-image” section ID to the section.
2) I add following CSS to “custom CSS for mobile”:
#hero-image {
background-image: url("https://some.url");
background-size: cover;
background-repeat: no-repeat;
background-position:center;
}
But nothing is changed on mobile.
When I assign the same ID to the row contained within this section it works as expected for the row. But I need this to work for the section as it contains several rows.