I have a situation similar to the following
<div class="col1">
<h2>title</h2>
<div><ul><li>Content</li><li>Another Item</li></ul></div>
</div>
<div class="col1">
<h2>Another title</h2>
<div><ul><li>More Content</li></ul></div>
</div>
<div class="col1">
<h2>...</h2>
<div><ul><li>More Content</li><li>Still more</li></ul></div>
</div>
....
<div class="col2">
<h2>title</h2>
<div><ul><li>Content</li></ul></div>
</div>
<div class="col2">
<h2>Another title</h2>
<div><ul><li>More Content</li><li>And More</li><li>...And More</li></ul></div>
</div>
<div class="col2">
<h2>...</h2>
<div><ul><li>More Content</li><li>Still more</li></ul></div>
</div>
....
I realize this would be much easier if I just had the div's of class="col1" all within one div and the div's of class="col2" all within another but is there any way I can get this displaying in 2 columns without doing that? Thanks in advance.