I have a template which has a background image with background-attachment: fixed;
in the header. Please see the link attached:
http://simpleqode.com/preview/wolfram/2.2.2/index_crossfading.html
body.classic .welcome_classic {
display: table;
height: 100%;
min-height: 100%;
width: 100%;
background-image: url(../img/bg-pattern_alt.png), url(../img/screen-bg_11.jpg);
background-position: top left, center center;
background-size: auto, cover;
background-repeat: repeat, no-repeat;
background-attachment: fixed;
color: white;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.18);
}
The problem is that on iPhone the background image gets 'zoomed' multiple times you can't see the image.
Removing background-attachment: fixed;
resolves the issue. Any ideas?