I'm trying some new themes and they are all breaking whenever I use the More tag. The other columns (the ones without the posts) always get pushed to the bottom of the page. When the_content() is called, what it's returning is this:
Without More tag:
<div id="post">
<p>POST CONTENT</p>
</div>
With the More tag:
<div id="post">
<p>CONTENT BEFORE MORE TAG
(more…)</p>
Notice the lack of a closing div tag. I'm not really sure how to fix this.