I have a feeling that Jeremy's class="thumb" in his stylesheet is the key to having the text and the images align next to each other. I can't seem to find a stylesheet to look at on his site, but I'd guess that adding a class like this might do it:
CODE
.thumb {float:left}
I'm not positive, though!
For a table based format, here's how I would modify his code -
CODE
<table>
<MTEntries>
<MTDateHeader>
<div class="date"><$MTEntrydate format="%B %d, %Y"$></div></MTDateHeader>
<tr><td>
<div class="blogbody">
<a name="<$MTEntryID pad="1"$>"></a>
<div class="thumb"><a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>"><$MTEntryExcerpt$></a></div></td>
<td>
<div>
<span class="title"><$MTEntryTitle$></span>
<MTEntryIfExtended>
<span class="extended"><$MTEntryMore$></span>
</MTEntryIfExtended>
</div>
<div class="posted">posted by <$MTEntryAuthor$> at <a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>">
<$MTEntryDate format="%I:%M %p"$></a>
<MTEntryIfAllowComments> | <a href="javascript:OpenComments(<$MTEntryID$>)">Comments
(<$MTEntryCommentCount$>)</a></MTEntryIfAllowComments>
</div>
</div></td></tr>
</MTEntries></table>
I didn't test this out because its quite different than my setup!!
Kristine