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.
Moving Sidebar Left to Right
![lisaw0203](https://secure.gravatar.com/avatar/b409afd041e96416a0a2c4672884ed62/?default=https%3A%2F%2Fvanillicon.com%2F567ca4930aafe260e7993082df2d7790_100.png&rating=g&size=100)
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;
}
0
Comments
Look at the css of Content and Panel with your browsers developer tools. You will find the following:
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
to your custom CSS and simply delete the Content{float:left} part
Thanks!