.php Wordpress - Move sidebar to left [HELP]

Rawrface

Newbie
Joined
Oct 17, 2012
Messages
20
Reaction score
11
Simple, but please help out? All I want to do is move my word press sidebar to the left. You can find all the files I'm using for the theme by searching google for: "free medical word press dark smoke theme".

I've tried searching for fixes to this problem to no avail. :c

This is really bothering me and I feel like a complete idiot because I can't solve it on my own. Please help me out? I doubt anybody experienced in this area will have to spend more than 10min to find the solution.
 
Search this on your style.css

.narrowcolumn, .widecolumn {
float: left; <-- Replace it with right,
padding: 0 0 16px 16px;
margin: 0px;
width: 630px;


#sidebar {
float: right; <-- Replace it with left,
font: 1em Verdana, Arial, Sans-Serif;
width: 238px;
}

If this doest work, give me your url, and let me see it.
 
Last edited:
Back
Top