Hmm… guess you need something like this markup
HTML
<div class="column-wrapper three-columns">
<div>
<p>Content of the <em>first</em> column</p>
</div>
<div>
<p>Content of the <em>second</em> column</p>
</div>
<div>
<p>Content of the <em>third</em> column</p>
</div>
</div>
CSS
.column-wrapper
{
overflow: hidden;
width: 100%;
}
.three-columns > div
{
/* lets say your content area has 960px = 2 * 30px margin and 3 x 300px box width */
float: left;
width: 300px;
margin-right: 30px;
}
.three-columns > div:last-child
{
margin-right: 0;
}
not tested, but should work as a example 🙂 let me know if you get in trouble 😉
Thanks so much! Had to adjust a few pixel values to get everything to fit, but it works flawlessly- I’ll let you know when I get my C&D letter 😉