Sonnie
Active member
In XF1 we had the following code in the Extra.css template to make the right column width in one specific forum only 160px wide:
This code does not work in the Extra.less template in XF2.
Anyone know what code we can use to get this done in XF2?
Thanks!
Code:
.nowrapsidebaradblock{margin:0 auto;}
.node11 .sidebar, .node11 .uix_mainSidebar { width: 160px; }
.hasRightSidebar .node11 .mainContainer {
margin-right: -176px;
}
.hasRightSidebar .node11 .mainContent {
margin-right: 176px;
}
.node11 .mainContainer
{
float: left;
margin-right: -170px;
width: 100%;
}
.node11 .mainContent
{
margin-right: 170px;
}
This code does not work in the Extra.less template in XF2.
Anyone know what code we can use to get this done in XF2?
Thanks!