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;
}
0
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 */
float: left;
}
float: right;
}
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!