Sidebar Left?

Discussion in '[bd] Widget Framework' started by gsd103, Jun 28, 2014.

  1. gsd103

    gsd103 New Member

    I am in search of the rare code for inserting a Sidebar Left into the Forum index, has anyone seen this hard to find code?
     
  2. gsd103

    gsd103 New Member

    why is it that the nobody has a sidebar left mod?
     
  3. xfrocks

    xfrocks XenForo rocks!
    Staff Member

    Well, probably because it's quite complicated to move the entire sidebar without breaking other add-ons :)
     
  4. gemma

    gemma Member

    I did this on one of my old styles before moving to a style that already had the sidebar on the left as default. Can't guarantee this will work for you but try adding this to your EXTRA.css

    HTML:
    .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: 270px;
    @property "/sidebar";
    }
     
    xfrocks likes this.
Loading...