1

Possible Duplicate:
iOS 5 fixed positioning and virtual keyboard

Has anyone come across this before? It only happens when the keyboard is on screen, once the keyboard is hidden again it goes back to normal.

The CSS

div#menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

The HTML

<div id="menu">
    <ul>
        <li id="menu-account" class="active"><a href="#">Account</a></li>
        <li id="menu-readmeter"><a href="#">Read Meter</a></li>
        <li id="menu-info"><a href="#">Info</a></li>
        <li id="menu-logout"><a href="#">Logout</a></li>
        <br class="clear">
    </ul>
</div>

App

Community
  • 1
  • 1
Nalum
  • 4,143
  • 5
  • 38
  • 55
  • My solution to this issue was to hide the `div#menu` when a form element had focus and then show it when the form element lost focus. – Nalum Mar 30 '13 at 15:34

0 Answers0