Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Moving Sidebar Left to Right

I used the below CSS,but got this result: http://bfpwishes.com/
What did I do wrong? Many thanks;)

/* Move the sidebar from the left to the right side */

Content {

float: left;
}

Panel {

float: right;
}

Comments

  • Options
    R_JR_J Ex-Fanboy Munich Admin

    Look at the css of Content and Panel with your browsers developer tools. You will find the following:

    #Panel {
        float: right;
    }
    
    #Panel {
        width: 200px;
    }
    
    #Body .ContentColumn {
        margin: 0 0 0 230px;
    }
    
    #Content {
        float: left;
    }
    

    So the Panels width is 200px and there is a 230px wide space reserved, on the left of the body. You don't want that.

    Add

    #Body .ContentColumn {
        margin: 0 230px 0 0;
    }
    

    to your custom CSS and simply delete the Content{float:left} part

  • Options

    Thanks!

Sign In or Register to comment.