there is white border in default main.IE6.css that brokes templates lookout.
find there
Code:
/* page container */
#page-container {
height: 100%;
border-left: 780px solid #ffffff;
float: left;
position: relative;
}
#page-container2 {
float: left;
margin-left: -780px;
position: relative;
height: 620px; /* bottom-expand */
}/* page container */
and change to
Code:
/* page container */
#page-container {
height: 100%;
border-left: 0px none;
float: left;
position: relative;
}
#page-container2 {
float: left;
margin-left: 0px;
position: relative;
height: 620px; /* bottom-expand */
}