I've created a modified TwentyTen child theme with the sidebar on the left hand side, by changing the "float" setting in these style.css rules:
/* Put the sidebar on the left */
#container {
float: right;
margin: 0 -240px 0 0;
width: 100%;
}
#primary,
#secondary {
float: left;
overflow: hidden;
width: 220px;
}
This seems to work fine, but it breaks the one-column template because the content is no longer centred. Anyone know how to move the sidebar to the left without breaking one-column layout in TwentyTen?
Thanks,
Graham