Hi all,
Shifting the sidebar to the left (child theme of bp1.2.2.1 default) seems like it would be a straightforward task, but I just can’t get it to behave ;-(
I thought that swapping the margin settings of the .padder and #sidebar divs would suffice but, alas, no good. That only creates a blank space on the left where the sidebar could go, but the sidebar contents still display on the right.
Here’s a screenshot of what happened: http://i44.tinypic.com/33zclz8.jpg
This is what I tried:
div#content .padder {
margin-left: 241px;
border-right: 1px solid #e4e4e4;
-moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
}
div#sidebar {
float: left;
width: 240px;
margin-right: -242px;
margin-top: 1px;
border-left: 1px solid #e4e4e4;
-moz-border-radius-topright: 3px;
-webkit-border-top-right-radius: 3px;
background: url( ../images/sidebar_back.gif ) top left repeat-x;
}
I can usually find my way in css (php is still new to me), but this has got me stumped! Any suggestions or guidance?