Was ist es?
Was heißt der Footer drübersteht?
Ich probiers dann mal mit Code.
hier erst mal der CSS Code:
html, body
{
margin:0;
padding:0;
height:100%;
overflow:hidden;
background-color:#fffef4;
}
#header
{
margin:0;
background:#fffef4;
position:absolute;
top: 0px;
left: 0px;
right: 0px;
height: 115px;
}
#content_container
{
overflow:hidden;
position:absolute;
top: 115px;
left: 0px;
bottom: 10px;
right: 0px;
}
#footer
{
background:#fffef4;
position:absolute;
bottom: 0px;
left: 0px;
right: 0px;
height: 13px;
}
#menu
{
background:#FFFef4;
height:100%;
text-align:left;
}
* html body
{
height:100%;
}
und hier der HTML Teil:
<body>
<h1 id="header">
<iframe src="oben.htm" width="100%" height="115" name="oben" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe>
</h1>
<div id="content_container">
<div id="menu" nowrap="nowrap" style="min-width:950px">
<iframe src="menuleer.htm" width="181px" height="100%" name="menue1" scrolling="no" frameborder="0"></iframe>
<iframe src="main.htm" width="721px" height="100%" name="cont" frameborder="0" scrolling="Auto"></iframe>
</div>
</div>
<div id="footer">
<iframe src="unten.htm" width="100%" height="13px" name="ftr" frameborder="0" scrolling="no"></iframe>
</div>
</body>