Hi!
I have a serious problem with IE6 and floating. I try to make a full CSS skin with 3 panes layout based on Issue 25. When I use some of the new browsers (IE7, Firefox 2.x, Opera) the skin looks great, I got the same result what I want.
But IE6 completely ignores the pane’s width value, and it drops the modules under each other. I define the with property in pixels, and add 3 panes with floats just like in Issue 25.
I try to use the display: inline property, but it still not work under IE6. Do anybody know solution for this kind of behavior? In Hungary the IE6 still very common this time, that is why I need to solve the problem.
You can visit the site here: www.zenejatek.hu
The CSS code:
#leftside /* Group together the leftpanel and midpanel */
{
float: left;
width: 854px;
}
#rightside /* Contain the rightpane div */
{
float: right;
width: 160px;
}
#leftpanel /* Contain the leftpane div */
{
float: left;
width: 160px;
}
#midpanel /* Contain the contentpane, midpane1, midpane2, bottompane, footerpane */
{
float: right;
width: 694px;
}
.midpane1
{
float: left;
width: 340px;
}
.midpane2
{
float: right;
width: 340px
}
Thanx
Lajos