Wordpress - Moving sidebar to the left side?

Dragon2010

Junior Member
Joined
Jul 4, 2010
Messages
112
Reaction score
31
Is it possible to move the sidebar to the left?

website: halloweensuperstitions.com
Code:
(user admin pass DmEtZ2*3)
The directory is password protected for now.

I created a child theme using the plugin one-click chile theme.

style.css:
Code:
/*
Theme Name:     lavinya-black-Child
Description:    lavinya-black-Child
Author:         admin
Template:       lavinya-black

(optional values you can add: Theme URI, Author URI, Version)
*/

@import url("../lavinya-black/style.css");

Original style.css:
Code:
 http://pastebin.com/i3mKCeF9
 
Last edited:
Username and password not working
 
Thanks there was a typo with the password

pass:
Code:
DmEtZ2*3
 
Please let me know if the pass works.

Also does anyone know how do the sidebar?
 
Try editing line 516 of css from "margin-left: 545px;" to "margin-left: 10px;" or something.
 
I found my answer and decided to share it.

After of hours of searching google I found this site: http://www.lancelhoff.com/move-the-kubrick-sidebar-to-the-left/


I added the following code using a custom css plugin:
Code:
.narrowcolumn {
float: right;
padding: 0 45px 20px 0px;
margin: 0px 0 0;
width: 450px;
}

#sidebar
{
padding: 20px 0 10px 0;
margin-left: 20px;
width: 190px;
}
 
Back
Top