Move Sidebar to Right

Robust

Well-known member
How can I move the sidebar to the right side? imo makes the most sense since all sidebars in XF are on the right hand side.
 
How can I move the sidebar to the right side? imo makes the most sense since all sidebars in XF are on the right hand side.
In xengallery_wrapper.css make sure the following looks like this:

Code:
.xengalleryContainer
{
    float: left;
    margin-right: -{xen:calc '@categorySidebar.width + 10'}px;
    width: 100%;
}

.xengalleryContainer .insideContainer
{
    margin-right: {xen:calc '@categorySidebar.width + 10'}px;
}

.container .xengallerySideBar
{
    @property "categorySidebar";
    padding-left: 10px;
    display: inline-block;
    vertical-align: top;
    *float: left;
    width: 220px;
    @property "/categorySidebar";
}
 
Top Bottom