Hi ikovac84
Do you have a public URL where I can take a look at what’s going on?
Hi Greg
Yes you can check http://www.marblemonkey.com/ subscribe section. I have tried with different themes but it`s always the same.
Hey ikovac84,
I believe the image is responsive there in your subscribe section. The spacer fills area on large and small screens. Because of that, the row is quite tall on smaller screens and since the background image is set to cover, a large chunk of it will be cut off.
You could use this CSS to hide the spacer on smaller screens:
@media screen and (max-width: 780px) {
#panel-109-2-0-0 .so-widget-spacer {
display: none;
}
}
Hopefully that will let the row be a more natural size and the image sized more appropriately.
Hi Bill
It looks better now. Thanks a lot 🙂