Promaetheus
Mitglied
Ich habe auf meiner Seite ein Menü, welches ich mit SPAN-Definitionen bearbeite. Ich weiss dass das nicht perfekt ist und noch viel vereinfacht werden könnte, jedoch bin ich leider kein Profi auf dem Gebiet.
Im Firefox wird alles korrekt dargestellt, im Internet Explorer leider nicht.
Mein CSS Code für die Navigation lautet wie folgt:
hier seht ihr den Fehler auf der Seite: http://www.promadesign.com/tcms/cms/deutsch/cat_2/cId_3
Wie gesagt funktioniert es im Firefox, im Internet Explorer 6 und 7 jedoch leider nicht. Mir ist schleierhaft warum bei span.navig.sub.active (span class="navig sub active") auch der span.navig.sub (span class="navig sub") verändert wird
Ich wäre euch sehr dankbar wenn ihr mir hier weiterhelfen könntet.
Im Firefox wird alles korrekt dargestellt, im Internet Explorer leider nicht.
Mein CSS Code für die Navigation lautet wie folgt:
Code:
/* nav style start */
a.navig {
font-family: Arial, verdana, arial, sans-serif;
font-size: 15px;
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}
a.navig:hover {
font-family: Arial, verdana, arial, sans-serif;
font-size: 15px;
color: #FF9900;
font-weight: bold;
text-decoration: none;
}
a.sub {
font-size: 14px;
margin-top: 0px;
color: #FFFFFF;
}
a.sub:hover {
font-size: 14px;
color: #FF9900;
text-decoration: none;
}
a.active {
color: #FF9900;
}
span.navig {
margin-top: 2px;
line-height: 30px;
padding-left: 30px;
display: block;
color: #FFFFFF;
background: #333333;
font-family: Arial, verdana, arial, sans-serif;
font-size: 12px;
font-weight: bold;
background-image: url(images/site/icon_nav_inactive.gif);
background-repeat: no-repeat;
background-position: 0.9em 0.8em;
}
span.sub {
padding-left: 48px;
border-bottom: 0px solid #D7BB70;
font-size: 11px;
margin-top: 0px;
color: #FFFFFF;
background: #333333;
background-image: url(images/site/icon_nav_inactive.gif);
background-repeat: no-repeat;
background-position: 2.7em 0.9em;
}
span.navig.active {
color: #000000;
text-decoration: none;
background-image: url(images/site/icon_nav_active.gif);
background-repeat: no-repeat;
background-position: 0.9em 0.8em;
}
span.navig.sub.active {
background-image: url(images/site/icon_nav_active.gif);
background-repeat: no-repeat;
background-position: 2.7em 0.9em;
}
/* nav style end */
hier seht ihr den Fehler auf der Seite: http://www.promadesign.com/tcms/cms/deutsch/cat_2/cId_3
Wie gesagt funktioniert es im Firefox, im Internet Explorer 6 und 7 jedoch leider nicht. Mir ist schleierhaft warum bei span.navig.sub.active (span class="navig sub active") auch der span.navig.sub (span class="navig sub") verändert wird
Ich wäre euch sehr dankbar wenn ihr mir hier weiterhelfen könntet.