Hallo
Ich habe ein Navigationsmenü unterhalb vom Header.
Im Firefox sitzt es perfekt, nur im IE ist es verschoben
die css
die Php
Bitte nicht schreien^^
Bin Anfänger^^
IE BILD FF BILD
Ich habe ein Navigationsmenü unterhalb vom Header.
Im Firefox sitzt es perfekt, nur im IE ist es verschoben
die css
PHP:
#navi {
position:absolute;
left:205px;
z-index:10;
}
#nav_buttons {
position:fixed;
top:150;
left:255px;
margin:0 auto;
float: left;
width:100%;
height:24px;
list-style-type:none;
font-size: 12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
color:white;
z-index:10;
}
#nav_buttons a {
background-image:url(pic/button.png);
width:100px;
height:30px;
margin-left: 20px;
display:block;
background-repeat:no-repeat;
text-decoration:none;
padding-top: 7px;
text-align:center;
}
#nav_buttons a:hover {
background-image:url(pic/button2.png);
text-decoration:underline;
}
#nav_buttons li {float: left;}
PHP:
<html>
<head>
<?php require "admin/config.php"; ?>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<br>
<div id="navi">
<ul id="nav_buttons" ><center>
<li><a href="index.php">Home</a></li>
<li><a href="impressum.php">Impressum</a></li>
<li><a href="ueberuns.php">Über Uns</a></li>
<li><a href="mailto:<? echo $email; ?>">Kontakt</a></li>
</ul>
</div>
</body>
</html>
Bin Anfänger^^
IE BILD FF BILD