Hallo,
ich denke fast dass das Problem hier spezifisch für den Nightly-Build ist den ich hab... Auf dem Bild ist das Problem zu sehen
Hast Du die Postings nicht gelesen? Der erste Link auf dem Bild war schon mal bsucht. In Deinem CSS steht:
a.navilink:link {
color: #364156;
padding-right: 4px;
display: block;
text-decoration: none;
text-align: right;
}
a.navilink:visited {
color: #364156;
text-decoration: none;
}
Ein a:visited ist _nicht_ mehr a:link. Demzufolge ist es auch kein Blockelement mehr.
a.navilink {
padding-right: 4px;
display: block;
text-decoration: none;
}
a.navilink:link {
color: #364156;
text-decoration: none;
}
a.navilink:visited {
color: #364156;
text-decoration: none;
}
sollte helfen.
viele Grüße
Axel