Hello,
I followed few threads to find the way to set an image as background for an html module in the one-page configuration and this is what I wrote in override.css to get it:
#gkBottom1-2 {background: url('path-to-the-image') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
This works perfectly: the image is centered and strecthes to fill the screen width if the screen is wider than the image, it doesn't if the screen is smaller. To better explain: visualization is just perfect on any laptop and desktop monitor, but on smartphones (and I guess also on tablets, even if I did not check) I can see just a part of the background image, losing the effect I was trying to get.
Do you know if there's a way to achieve a total responsiveness of the background image?
Thank you very much
Matteo