ich habe mal wieder eine Frage an euch, da ich einfach nicht mehr weiter weiß:
mein css code:
[php].navigation_links {
font-family: Verdana, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: bold;
color: #FFFFFF;
display: table-cell;
padding: 2px;
text-decoration: none;
background-color: #4C5F8D;
border-top-style: double;
border-right-style: double;
border-bottom-style: double;
border-left-style: double;
}[/php]
in Firefox ist es so, dass oben eine Linie über den Wörtern angezeigt wird, aber beim Internet Explorer leider nicht!
Was muss ich ändern?
Bin für jeden Tipp dankbar!
PS: Das Menü verläuft von links nach rechts
ich hab jetzt in dne head bereich:
[PHP].navigation_links {
display: block !important;
}[/PHP]
kopiert
die test.css lautet:
.navigation_links {
font-family: Verdana, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: bold;
color: #FFFFFF;
display: table-cell;
padding: 2px;
text-decoration: none;
background-color: #4C5F8D;
border: double 1px #000;
jetzt ist nur das problem, dass er alle menü-punkte untereinander anzeigt, ich will aber, dass er sie nebereinander anzeigt
Hat das jetzt was mit dem important zu tun, oder habe ich in meiner test.css einen Fehler?