I have navbars on my site using bootstrap 3 (header and footer).
The navbars work perfectly for all navigation, until the iOS keyboard is brought up. When the keyboard is brought up, it un-fixes
the position of the navbars and makes them appear static
(you can scroll them around and they just look like they're overlayed on the page).
Sample Footer code:
<div class="footer navbar navbar-inverse navbar-fixed-bottom">
<div class="container-fluid"></div>
<div class="navbar-header"><div class="navbar-collapse collapse" id="bs-example-navbar-collapse-2" style="height: 1px;">
<ul class="nav navbar-nav navbar-right">
<li>
<div class="btn-group dropup" style="width:100%;">
<!--somestuff-->
</div>
</li>
</ul>
</div>
</div>
Whats the best way to handle this?