Hi,
habe ein Stylesheet eingebunden, das eine zentrierte Seite mit fester Breite, oberer Container über die ganze Breite, linker und rechter darunter (mit fester Breite sowie float left bzw. right). Im CSS sieht's so aus:
Code:
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
background:#FFFFFF top center;
width: 990px;
margin:auto;
}
#oben {
top: 0px;
height: 100px;
width:990px;
position: fixed;
padding-top: 0px;
z-index: 3;
background-color: #C4C4C4;
}
#links {
top: 100px;
width: 150px;
height: 100%;
float: left;
position: fixed;
z-index: 2;
font-family: Arial;
padding-left: 10px;
padding-top: 15px;
padding-right: 5px;
background-color: #C4C4C4;
}
#mitte{
top: 100px;
left: 0px;
width: 800px;
min-height: 800px;
float: right;
position:relative;
z-index: 1;
font-family: Arial;
padding-top: 5px;
padding-left: 15px;
padding-right: 10px;
background-color: #E3E3E3;
} Firefox und Opera machen das auch richtig. Der IE schiebt "oben" und "links" an den linken Fensterrand und "mitte" an den rechten.
Bei anderen Webseiten (ohne Typo3) klappt das Seitenlayout auch im IE. Gibt's denn was Typo3 spezifischen, das da wirkt. Z.B. dieses CSS Styled Content (css_styled_content), das ja wohl statisch eingebunden sein muss (ohne werden bei mir keine Inhalte angezeigt)? Oder was anderes?
Bin für gute Tipps dankbar.
Heinrich