I have a website that is using a fixed background for the background. It works correctly in desktop and in android but iphone seems to not accept fixed background as the background it static and scrolls with the page. the website link is www.ofevape.com to view in the iphone. I have tried !important on the background which doesn't seem to change anything. It doesn't seem to respond to fixed background and cover.
i'm using the following code for my background.
body {
font-family: 'open_sansregular';
font-size: 1em;
margin: 0;
padding: 0;
background: url(images/bg-wood-light.jpg);
//background-image: url(images/bg1.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height: 100%;
width: 100%;
background-position: center center;
background-repeat: no-repeat;
}