• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

IE Problem mit Navigation

Status
Für weitere Antworten geschlossen.

haufe

Neues Mitglied
Hallo

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;}
die Php
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>
Bitte nicht schreien^^

Bin Anfänger^^


IE BILD
FF BILD
 
Hallo habe den fehler gefunden!!!!


IE hat Probleme mit = fixed
; einfach auf relative; und es geht


danke
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben