I'm making an iPhone App / Mobile Web site and when I access the site normally )(top image), everything is formated as it should be, but when I set it as a home screen app (bottom), the title goes behind the information bar at the top (or at least it does in the simulator). So I'm wondering what I can do to fix that, or if there's some way to declare separate styles if the iphone is in this mode. Thanks for any help you can provide.

Top: From Website. Bottom: As Home Screen App

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

http://www.bennadel.com/blog/1950-Detecting-iPhone-s-App-Mode-Full-Screen-Mode-For-Web-Applications.htm

if (("standalone" in window.navigator) && !window.navigator.standalone) {
  // do something, like injecting a stylesheet via JS
}
link|improve this answer
Thanks a lot for the help. – mheavers Aug 9 '11 at 15:33
feedback

To fix this, you can use this piece Javascript that automatically scrolls to the content (hiding the adress bar):

/mobile/i.test(navigator.userAgent) && !location.hash && setTimeout(function() {
  window.scrollTo(0, 1);
}, 1000);​
link|improve this answer
This will not fix the issue illustrated in the second screenshot. – ceejayoz Aug 9 '11 at 15:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.