I have a little problem with showing a fixed header with I-Phone. The header must be placed in the middle (like now). The Problem is, that I can not zoom in with I-Phone.
#header{
position:fixed;
z-index: 1;
width: 100%;
top:0;
width:100%;
height:100px;
padding-top:20px;
background:#fff;
}
#inheader{
width:825px;
margin:auto;
}
#headerlogo{
float:left;
}
#navmenu{
float:right;
}
Here is the html:
<div id="header">
<div id="inheader">
<div id="headerlogo">
<a href="/home.php" title="home" rel="home"><img src="/images/logo.png" alt="Logo" width="295px"></a>
</div>
<div id="navmenu">
<!-- horizontal nav-menu-->
</div>
</div>
Had anybody the same problem yet? Any help?
Greets, yab86