MyBB.de Forum
IE <> Firefox Problem - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: IE <> Firefox Problem (/thread-5475.html)

Seiten: Seiten: 1 2 3


IE <> Firefox Problem - modercol - 06.04.2007

Ich möchte das Menü-Link oben in der Mitte sind (siehe Bild->Explorer), zuerst hatte der Firefox es richtig angezeigt, dann hab ich die angaben geändert, jetzt zeigts der Firefeox falsch an (siehe Bild->Firefox) und der IE richtig. hier mal die CSS angaben:
Oberes-Menü:
Code:
text-align: left;
height:40px;
Zusätzliche CSS:
Code:
.menu ul {
    list-style: none;
        vertical-align:top;
}

.menu li {
    display: inline;
    padding-left: 5px;
}
Template-Header:
Code:
<div id="header">
    <!-- {$easybanner} -->
            <div class="menu">
<ul>
<li><div style="height:5px; margin-top:15px; ">&nbsp;</div></li>
                                       <li><a href="{$mybb->settings['bburl']}/rules.php"><img src="{$theme['imgdir']}/toplinks/rules.gif" alt="" />{$lang->toplinks_rules}</a></li>
                                        <li>
Ich bekomms nicht hin. Wer kann mir helfen?


RE: IE <> Firefox Problem - Sapd - 06.04.2007

Versuch mal es mit einen div die genaue Position anzugeben.


RE: IE <> Firefox Problem - modercol - 06.04.2007

Ich hab um <ul>....</ul> eine div mit absoluter position angegeben: Das Ergebnis ist nicht schön.
->Funktioniert nicht.


RE: IE <> Firefox Problem - Grauer-Magier - 06.04.2007

Hi!

Ich glaub das Problem liegt hier:
Code:
margin-top:15px

LG, GM!


RE: IE <> Firefox Problem - modercol - 06.04.2007

Wenn ich dies lösche wirds im FF richtig angezeigt und im IE ganz oben im schwarzen Bereich.


RE: IE <> Firefox Problem - Michael - 06.04.2007

Muss es beim CSS für das obere Menü nicht text-align: center; heißen?


RE: IE <> Firefox Problem - modercol - 06.04.2007

text-align (left,center,right) ist doch für die horizontale Anordung gedacht (link,mitte,rechts)
und vertical-align (top,middle,bottom) für die Verticale Anordnung (oben,mitte,unten)
Oder was meinst du jetzt mit center?ShyWink


RE: IE <> Firefox Problem - Grauer-Magier - 06.04.2007

Hi!

Lass den Befehl drin, aber setz ihn auf 0px. Der IE braucht den Befehl, der FF anscheinend nicht.

LG, GM!


RE: IE <> Firefox Problem - modercol - 06.04.2007

Zitat:<div class="menu">
<ul>
<li><div style="height:5px; margin-top:0px; padding-top:0px; ">&nbsp;</div></li>
Wird immer noch oben im schwarzen Bereich angezeigt.


RE: IE <> Firefox Problem - Jan - 06.04.2007

modercol schrieb:Wenn ich dies lösche wirds im FF richtig angezeigt und im IE ganz oben im schwarzen Bereich.
Dann mach doch einfach ein If IE
Code:
<style type="text/css" media="screen">
oberes_menu{
    height:5px;
    margin-top:0px;
}
</style>
<!--[if IE]>
<style type="text/css" media="screen">
oberes_menu{
    margin-top:15px;
}
</style>
<![endif]-->
<div id="header">
    <!-- {$easybanner} -->
            <div class="menu">
<ul>
<li><div class="debugmenu" "> </div></li>
                                       <li><a href="{$mybb->settings['bburl']}/rules.php"><img src="{$theme['imgdir']}/toplinks/rules.gif" alt="" />{$lang->toplinks_rules}</a></li>
                                        <li>