Hi All,
I’m optimizing a BB site (theme and plugin) for mobile. One important step is to not load large background images on small screen sizes. I accomplished this with the following:
@media screen and (max-width: @small-device-breakpoint) {
.fl-row-bg-photo .fl-row-content-wrap,
.fl-row-bg-parallax .fl-row-content-wrap {
background-image: none;
}
}
This is working great for the background images, they aren’t even being called from the server. However, the parallax images are still being called and loaded before getting hidden. Do you have a solution for causing the parallax images to not be loaded at all for mobile screens?
Thanks!