The default layout of the post teasers/excerpts on the Thesis theme for WordPress is two per row. Sometimes, it does not work for the look that you’re going after. This bit of code will make the teasers/excerpts align one per row, instead of two across:
[code]
.custom .teaser {
width: 100%;
margin-top: 2em;
padding-top: 2em;
text-align: justify;
}
.custom .teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;
}
[/code]
That’s it! Pretty easy, eh?