Hallo Leute, ich hab jetzt echt schon den ganzen Tag rumprobiert und geh einfach nur noch am Stock.
Ich hab auf meiner Seite Infoboxen, die Kurioserweise beim Menü oben beim Firefox sowie IE angezeigt werden, die Infoboxen beim rechten Menü werden nur vom Firefox dargestellt
hier der Link zu meiner Seite http://www.elitestudio.de/tryout/studio.html
und hier das css zu den Klassen topmenu und headermenu
und dann auch noch der css Code der Infoboxen
Danke euch schonmal im voraus, cheers
Ich hab auf meiner Seite Infoboxen, die Kurioserweise beim Menü oben beim Firefox sowie IE angezeigt werden, die Infoboxen beim rechten Menü werden nur vom Firefox dargestellt
hier der Link zu meiner Seite http://www.elitestudio.de/tryout/studio.html
und hier das css zu den Klassen topmenu und headermenu
Code:
/* CSS Document */
a.topmenu:link {
font-size: 10px;
text-decoration:none;
font-family: "Century Gothic";
font-weight: normal;
color: #666666;
margin-top:0px;
}
a.topmenu:visited {
font-family: "Century Gothic";
font-size: 10px;
font-weight: normal;
color: #666666;
text-decoration: none;
margin-top:0px;
}
a.topmenu:hover {
text-decoration: none;
color:#990033;
font-family: "Century Gothic";
font-size: 9px;
font-weight: bold;
margin-top:0px;
}
a.topmenu:active {
font-family: "Century Gothic";
font-size: 10px;
font-weight: normal;
color: #666666;
text-decoration: none;
margin-top:0px;
}
a.headermenu:link {
font-size: 12px;
text-decoration:none;
font-family: "Century Gothic";
font-weight:700;
color: #a1a1a1;
margin-top:0px;
margin-left:20px;
}
a.headermenu:visited {
font-family: "Century Gothic";
font-size: 12px;
font-weight:700;
color: #a1a1a1;
text-decoration: none;
margin-top:0px;
margin-left:20px;
}
a.headermenu:hover {
text-decoration: none;
color:#990033;
font-family: "Century Gothic";
font-size: 12px;
font-weight:700;
margin-top:0px;
margin-left:20px;
}
a.headermenu:active {
font-family: "Century Gothic";
font-size: 12px;
font-weight:700;
color: #a1a1a1;
text-decoration: none;
margin-top:0px;
margin-left:20px;
}
Code:
a.topmenu span{
visibility:hidden;
position:absolute;
left:0em;
top:-3.5em;
padding:1em;
text-decoration:none;
color:#666666;
font-size:10px;
font-family:Geneva, Arial, Helvetica, sans-serif;
}
a.topmenu:hover span {
display:block;
visibility:visible;
border:1px solid #c11115;
background:white;
}
a.headermenu span{
display:none;
visibility:hidden;
position:absolute;
left:16em;
top:-3.5em;
padding:1em;
text-decoration:none;
color:#666666;
font-size:10px;
font-family:Geneva, Arial, Helvetica, sans-serif;
}
a.headermenu:hover span {
display:block;
visibility:visible;
border:1px solid #c11115;
background:white;
}