Customizing the Sidebars
Are you finding that when you change the width of your content column, your sidebar breaks and the content column overlaps the sidebar? A fix to that is explained here that only takes a few seconds of your time to do.
It is highly advised that you understand the basic idea of faux columns before you read this article.
In Thesis, you have the ability to change the number of columns that make up your blog, and you can change the width of those columns as well. The changes you make to the the number of columns, and the width of each separate column has an effect on the entire width of the blog. These are all variables that mess with our theme a little bit.
If you notice one thing about the sidebar on the Blogussion Theme, is that it extends the full height of the content column (the area where your articles are). This is called a faux column layout, and it requires a little extra CSS code to make it work. Because, as quotes from the List Apart article:
One of the somewhat frustrating properties of CSS is the fact that elements only stretch vertically as far as they need to. Meaning, if a 200-pixel tall image is contained within a
<div>, the<div>will only expand down the page 200 pixels.
The problem with this flexibility and our theme
To create a working faux column, you have to manually go into the CSS and edit a certain value for proper alignment. Whenever the width of your blog changes, this value needs to be updated, or your sidebar will face some difficulties as shown below.

How to fix this
So to fix the sidebar, it’s actually quite simple. It just requires a little patience on your end and some minor CSS tweaking. I would highly recommend you have Firebug to make this a lot quicker.
Open the stylesheet of your choice in your FTP…thesis/custom/css/color.css
Each color of the Blogussion theme uses a different CSS file, so open the file according to the color scheme you chose in your admin options.
Search your CSS (cmd +F or cntrl + F)
Search for this line your stylesheet:
.custom #content_box { background: #FFF url(../images/default/content_box.gif) repeat-y 63.4em 0; border: 1px solid #000; }
We are going to focus on the red text in that line of CSS. If you read the article from A List Apart on faux columns, you would know that the background of the sidebar is actually an image we are repeating vertically 100% in the content box, that is, the DIV that surrounds the code for the content column and the sidebar column.
<div "content_box">
<div id="content">
...
</div>
<div id="sidebars">
...
</div>
</div>
Now the trick to fixing the sidebars is to actually edit the background position of where this image cuts off at. The background position is controlled by the number I highlighted in blue, 63.4em.
What that code is doing is aligning the background image of #content_box to the right by adding 63.4em of whitespace to the left to push it over. This is a static thing, and doesn’t adjust automatically in our theme…yet.
So an easy way to think of adjusting it is like this:
The larger your content box gets, the higher that number should be.
The smaller your content box gets, the lower the number should be.
So really, it’s a pretty easy fix. It is our hope to somehow make this a little more automated in future editions of this theme release, but for now it will take a little CSS adjusting. But it’s not too bad, right?
