zempsit
Erfahrenes Mitglied
Ich bin gerade meine Seite http://www.zeme.ch etwas am redesignen.
Nun will ich, dass der Layer immer über die volle Seitenhöhe geht. Im Firefox klappt das ganz. Der IE zeigt aber immer noch einen recht dicken Rand, bei Opera ist er etwas kleiner. Ich habe nun schon einiges probiert, aber irgendwie will das nicht klappen.
Hier der entscheidende CSS-Code:
Ich bin für jede Hilfe dankbar.
Nun will ich, dass der Layer immer über die volle Seitenhöhe geht. Im Firefox klappt das ganz. Der IE zeigt aber immer noch einen recht dicken Rand, bei Opera ist er etwas kleiner. Ich habe nun schon einiges probiert, aber irgendwie will das nicht klappen.
Hier der entscheidende CSS-Code:
Code:
html, body {
padding:0px;
margin:0px;
height:100%;
}
body {
background-image:url(../img/background.gif);
background-repeat:repeat-y;
background-position:top center;
width:100%;
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
}
#bgheight {
background-image:url(../img/background_riesig.gif);
background-repeat:repeat-y;
background-position:top center;
width:100%;
margin:0px;
padding:0px;
min-height:100%;
height:auto;
text-align:center;
}
* html #bgheight {
height:100%;
}
#top, #bottom {
width:780px;
height:3px;
background-color:#000000;
margin:0px auto;
padding:0px;
font-size:0px;
}
#bottom {
background-color:#273115;
}
#navi {
width:780px;
margin:0px auto;
padding:0px;
border:0px;
white-space:nowrap;
text-align:left;
background-image:url(../img/backtop_gross.jpg);
background-repeat:no-repeat;
height:155px;
overflow:hidden;
}
#contenter {
width:780px;
background-color:#FFFFFF;
margin:0px auto;
padding:0px;
overflow:hidden;
border-left:1px solid #D2691E;
border-right:1px solid #D2691E;
voice-family: "\"}\"";
voice-family:inherit;
width:778px;
}
#leftcol {
position:static;
width:580px;
float:left;
padding:0px 0px 25px 0px;
}
#rightcol {
position:static;
width:178px;
float:left;
padding:0px 0px 25px 0px;
margin:0px 0px 0px 20px;
text-align:right;
}
#foooter {
clear:both;
width:778px;
background-color:#D2691E;
height:5px;
font-size:0px;
padding:0px;
margin:0px;
}
#preload {
display:none;
}
Ich bin für jede Hilfe dankbar.