Changing sidebar and main wrapper in blogger template

Hi,

I am using blogger. I want to change the sidebar which is currently on the left to right, and main wrapper to the left.

But i was not able to do so, here is the template

.blogouter-wrapper { overflow: hidden; position: relative; width: 100%; }
.header-wrapper { background: #2e2e2e; position: relative; z-index: 999; }
.ct-wrapper { padding: 0 20px; position: relative; max-width: 1150px; margin: 0 auto; }
.main-wrapper { width:auto; margin-right: 330px; }
#content { float: left; position: relative; width: 100%; }
.sidebar-wrapper { width: 300px; float: right; padding: 0; margin: 40px 0; }

changing float right to left and changing width didn’t help.

Can anybody help me?

thanks

You need to post a link to the site, or at least the HTML markup if you want to get proper help.

BUT if I had to guess I’d say something like this should do the trick…

.main-wrapper { width: 66%; margin-right: 0; float: left; }
.sidebar-wrapper { width: 33%; float: right; padding: 0; margin: 40px 0; }

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.