Replace this:
Quote
<div id='board_index' class='ipsLayout <if test="sideBarEnabledL:|:$this->templateVars['sidebar_enabled']">ipsLayout_withright</if> ipsLayout_largeright clearfix <if test="sidebarclosed:|:IPSCookie::get('hide_sidebar') == '1'">no_sidebar</if>'>
Quote
<div id='board_index' class='ipsLayout <if test="sideBarEnabledL:|:$this->templateVars['sidebar_enabled']">ipsLayout_withleft</if> ipsLayout_largeleft clearfix <if test="sidebarclosed:|:IPSCookie::get('hide_sidebar') == '1'">no_sidebar</if>'>
Replace this:
Quote
<div id='index_stats' class='ipsLayout_right clearfix' <if test="sidebarclosed2:|:IPSCookie::get('hide_sidebar') == '1'">style='display: none'</if>>
Quote
<div id='index_stats' class='ipsLayout_left clearfix' <if test="sidebarclosed2:|:IPSCookie::get('hide_sidebar') == '1'">style='display: none'</if>>
Then...
ACP>Look & Feel>your_skin>CSS tab>ipb_styles.css
Replace this:
Quote
.ipsLayout_content {
float: left;
width: 100%;
}
float: left;
width: 100%;
}
Quote
.ipsLayout_content {
float: right;
width: 100%;
}
float: right;
width: 100%;
}
Replace this:
Quote
#board_index.no_sidebar {
padding-right: 0;
}
padding-right: 0;
}
Quote
#board_index.no_sidebar {
padding-left: 0;
}
padding-left: 0;
}
Remove indicated line, add line in red:
Quote
#toggle_sidebar {
-moz-transition: all 0.4s ease-in-out 0s;
background: none repeat scroll 0 0 #333333;
border-radius: 4px 4px 4px 4px;
color: #FFFFFF;
right: -3px;
left: 1px;
opacity: 0.5;
padding: 0 3px;
position: absolute;
top: -6px;
z-index: 8000;
}
-moz-transition: all 0.4s ease-in-out 0s;
background: none repeat scroll 0 0 #333333;
border-radius: 4px 4px 4px 4px;
color: #FFFFFF;
left: 1px;
opacity: 0.5;
padding: 0 3px;
position: absolute;
top: -6px;
z-index: 8000;
}
All done :)














