Sebastian: Problem Anzeige IE 6 (overflow:auto)

Beitrag lesen

Hallo,

ich habe ein Joomla-Template so angepasst, das nur der Content-Bereich scrollbar ist. Ich habe dabei auf folgende Quelle zurückgegriffen:

http://www.cssplay.co.uk/layouts/basics.html

Jetzt habe ich das Problem, dass die Seite zwar in FF, Safari, Netscape usw ... auch im IE 7 richtig angezeigt wird, der IE 6 zeigt jedoch überhaupt keinen Content-Bereich an.

Woran kann das liegen?

Dies ist ein Ausschnitt der CSS-Datei:

----schnipp----

#rel-content {
overflow:auto; /* add scroll bars as necessary */
position:absolute; /* position absolutely */
z-index:3; /* If required to cover any other divs */
top:185px; /* a value to miss the header */
bottom:4px; /* a value to miss the footer */
width:722px;
margin-left:auto;
margin-right:auto;
}

* html #rel-content {
height:100%; /* full screen height */
width:100%; /* full screen width 8 */
border-top:185px solid #fff; /*add a top border to miss the header
(this is SUBTRACTED from the 100% height on quirks mode) */
border-bottom:4px solid #fff; /*add a bottom border to miss the footer
(this is SUBTRACTED from the 100% height on quirks mode) */
}

----schnapp----

Scheinbar stört den IE 6 folgende Zeile:
overflow:auto; /* add scroll bars as necessary */

Sobald ich diese rausnehme wird der Content im IE 6 wieder angezeigt. Zwar nicht an der gewünschten Stelle und ohne die Scrollbar aber er wird wieder angezeigt.

Hat jemand eine Idee wie ich das ganze auch für IE 6 hinbekomme?

PS: Das ganze kann man sich unter der angegebenen URL auch ansehen!

Danke!