Reply To: iphone 6+ responsive image

Home Forums Support iphone 6+ responsive image Reply To: iphone 6+ responsive image

Home Forums Support iphone 6+ responsive image Reply To: iphone 6+ responsive image

#109159
Tom
Lead Developer
Lead Developer

Hmm, when I reduce my browser to mobile size, the background images look like they do in your screenshots above.

If you Google “background position fixed ios” – you’ll see a bunch of stuff telling you how ios dislikes background:fixed (which is the base for the parallax effect).

For the images looking all weird on mobile, I definitely suggest mobile friendly backgrounds.

For example:

@media (max-width:768px) {
      .my-custom-section-class {
            background-image: url('URL TO MY MOBILE BG IMAGE');
      }
}