VivianPotthastp
New Member
So in both portrait and landscape the right 30% or so of the screen is just white, only on iPhone and maybe other small screens, as if the width were less than 100%.Here is my HTML:\[code\]<div id="loading"><div id="loading-message"> <p>Please enable Javascript to view this site.</p> <p class="tar">-Thanks</p></div><div id="loadingBar"> <div id="loadingBarInner"></div></div></div>\[/code\]And relevant CSS:\[code\]#loading {background: gray;width: 100%;position: absolute;height: 1800px;box-shadow: inset 0px 0px 500px black;}#loading-message {margin: auto;border-radius: 30px;padding: 100px;box-shadow: 0px 0px 50px 10px black;width: 300px;margin-top: 200px;font-size: 30px;font-weight: bold;}#loadingBar {margin: auto;width: 350px;height: 30px;margin-top: 300px;border-radius: 5px;border: 2px solid black;padding: 2px;}#loadingBarInner {background: #6d0019; /* Old browsers */height: 30px;width: 0px;border-radius: 5px;}\[/code\]