Move XenForo Sidebars (Right-Left) 'Except' the Conversation Pages?

CritiKiL

Active member
Ok I did this to my site and I love it:
http://xenforo.com/community/resources/moving-xenforo-sidebar-from-right-to-left.338/.
But for obvious reasons I would like ONLY the Conversation pages to remain Original. Is that possible by modifying the coding I have now? The coding for changing from Right to Left in EXTRA.css is this:

Code:
.mainContainer
{
float: right;
margin-left: -{xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
width: 100%;
}
 
.mainContent
{
margin-left: {xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
}
 
.sidebar
{
@property "sidebar";
font-size: 11px;
float: left;
width: 250px;
@property "/sidebar";
}
 
Deepmartini,
I am working on a reversed layout. You can see a bit of it in this topic:
http://xenforo.com/community/threads/problems-when-resizing-quickreply.44692/

I removed the avatar arrow instead of reversing it. I made a bunch of changes which you can see if you look at the link in that post (one of the small changes is merging the footer and footerLegal for example). The reversed layout hasn't caused many issues but I do have about 1200 lines of code in EXTRA (2500 if I add in the comments and spacing lines). I also have 140 TMS edits and 4 new templates. Very little has been changed using Styling Properties.
 
Top Bottom