I'm having a problem switching the columns in this wordpress theme - http://managedtasks.com/wpthemes/blog/index.php?wptheme=Benevolence I want the content/posts to be on the left side and the navigation and other links on the right side. Can anyone give me a little insight into what I need to change in the CSS file? Thanks!
Since no one else posted I'll give it a shot... First I'd move the sidebar div below the content div in your index.php file. Then in the stylesheet find #content and #sidebar. For the content div, switch the margin-left from 250px to 0px. Then either get rid of the float: left or move it from the sidebar to the content div. For #sidebar, add a margin-left: 430px. Hopefully that does it