Reputation: 1604
Is there a specific way you have to set the background image for it to appear on IOS devices?
the image appears on my laptop but all I get is a white background on my iPad.
I've assigned the image with:
body {
background-image: url(background.jpg);
}
Any suggestions?
Upvotes: 0
Views: 149
Reputation: 755
body {background-image: url("../background.jpg") no-repeat scroll center 100px;}
i use this to center on ipad, try this out
Upvotes: 1
Reputation: 1604
Hey guys sorry for the delay in replying.
I just simply added the background-image into my body tag on the html and it loaded without a problem
thanks for the help
Upvotes: 0