Can you tell me please how I can change the sidebar from rigth to left?
Thanks Stoeffel

Comments

alisonv09’s picture

I'm interested in doing the same thing. Is this possible?

melissaralph’s picture

I'm interested in the same thing!

kanenas’s picture

I'm interested in doing the same thing. Is this possible?

minoxes’s picture

+1

texrag’s picture

Someone mentioned that he was able to fix this by changing code on page.tpl.php. It seems to me it would have to be fixed both on page.tpl.php and style.css. Looks like the developer has abandoned this project.

texrag’s picture

Quick fix (may not be the best)

Changes are made to style.css.

Go to "Nodes & Pages"

body.sidebar-first #post-content {
float: left; <---- change to right
margin: 0;
padding: 0;
width: 600px;
}

Go to "Sidebar"

#sidebar {
float: right; <----change to left
width: 230px;
}

If someone can help make it prettier. The left side bar needs to be adjusted a bit more.

AxlRenner’s picture

Quick fix (may not be the best)

Changes are made to style.css.

Go to "Nodes & Pages"

body.sidebar-first #post-content {
float: left; <---- change to right
margin: 0;
padding: 0;
width: 600px;
}

Go to "Sidebar"

#sidebar {
float: right; <----change to left
width: 230px;
}

If someone can help make it prettier. The left side bar needs to be adjusted a bit more

Best solution