|
Change these two line in main.css
#contentbox {margin:0 240px 0 25px}
#sidebar {position:absolute;top:0;left:auto;right:25px;widt h:200px;}
To this:
#contentbox {margin:0 25px 0 240px}
#sidebar {position:absolute;top:0;left:25px;right:auto;widt h:200px;}
And that will move the right 'sidebar' to the left and put the content on the right
|