Ho fatto alcuni cambiamenti, imponendo che il menų a sinistra avesse una posizione fissa indipendentemente dallo scroll, e ho aggiunto dei pulsanti con tanto di hoover nell'header.
Se in FF sembra vedersi tutto bene, in IE7 non si vede nč il menų nč l'header, e non ho IE6 a disposizione per provare.
FF2:
IE7:
IE6?
Il codice per l'header l'ho preso assieme ai pulsanti dal web, per il menų left col ho preso dal web solo il fix per IE6, che non so se in realtā faccia effetto o menoCodice PHP:#header {
font-size:93%;
line-height:normal;
padding-right: 5%;
}
#header ul {
margin:0;
list-style:none;
}
#header li {
display:inline;
margin:0;
padding:0;
}
#header a span {
float:right;
display:block;
background:url("/img/button_out.jpg") no-repeat right top;
text-align:center;
padding-top: 15px;
font-size:18px; font-weight:bold; text-decoration:none;
width: 149px; height:62px;
}
#header a span:hover {
background:url("/img/button_in.jpg") no-repeat right top;
}
#leftcol{
width:15%;
float:left;
position:fixed;
top: 70px;
background-color:#242424;
}
* html #leftcol{ /*IE6 only rule, applied on top of the default above*/
position: absolute;
top: expression(document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+70+"px" : body.scrollTop+70+"px");
}



Rispondi quotando