I would like to have the sidebar on the left of the site instead of the right. Can it be done, and if so, how? Also, if I use a multi-column layout, is there a way to place blocks in the different columns?

Also, waiting for an answer on the login-logout feature, if anyone would know the answer to that as well...

Thanks...

Comments

dRaz’s picture

+ 1 - I would also like the option to float this on the left side rather than the right.

By the way....loving the theme, good job :)

dawick’s picture

Add following CSS:

.with-sidebar #sidebar {
    margin-left: 0;
    width: 200px;
}

.with-sidebar #content {
    float: right;
    width: 600px;
}

You might have to tune the width properties a bit.