My website displays normally on most browsers, but I have two different problems on the iPad and the Android browsers.
- Initially the webpage displays on a 1-1 scale, while I would like visitors to see the entire webpage.
- The background doesn't show correctly. When I zoom out, only part of the background seems loaded.
I used:
<meta name="viewport" content="width=device-width">
for the initial zoom and:
div.background {
width: 100%;
background: #ffffff url('../img/background_first.jpg') center top no-repeat;
}
for the background. I event tried to add:
-webkit-background-size: 1500px 1000px;
background-size: 1500px 1000px;
but the background problem (which is my main concern) remains. Any ideas?