0

This is where I believe the problem to be.

Let me know if I'm wrong.

/* Home Style */
#tf-home{
    background: url(../img/kristen11.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #cfcfcf;
}
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129

1 Answers1

0

try

background-attachment: scroll;

instead of fixed as ios specially iphone and ipad has issue with background-attachment: fixed

Rahul
  • 4,294
  • 1
  • 10
  • 12