Page 1 of 1

Rahmen um gesamte Website im Firefox nicht sichtbar

Posted: Mon 26. Feb 2007, 19:32
by tastosteron
Firefox zeigt den Rahmen um die gesamte Website nicht an, im IE alles wunderbar...

folgendes hab ich in der fronted:

.rahmen {
border: 1px solid #333333;
}

natürlich hab ich auch im Seitenlayout "rahmen" bei class gesetzt.

Woran kann es liegen?

Posted: Mon 26. Feb 2007, 20:04
by pico
mal mit

body{
border: 1px solid #333333;
}

probiert ?

Posted: Mon 26. Feb 2007, 20:25
by tastosteron
ich glaub da hab ich mich falsch ausgedrückt :D

ich meinte um alle Blöcke

Posted: Mon 26. Feb 2007, 21:50
by axelko
Hi,

Try to give the div the name rahmen and use this id in the css. This because #id is unique and has an higher priority.

In template file
<div id="rahmen">
...
</div>


css file

#rahmen{
border: 1px solid #333;
}