2
This is not a long post

The site, you are looking at, has changed the template showing news items (modules/news/templates/news_item.html - or clone the default template and edit the cloned news item through administration menu -> system admin -> templates)
The template for the news item says where to place the various elements, which makes up a news item, using Smarty templates, which is like HTML with some added programming elements.
Try this for a news_item template instead (I have just moved the imagelink to a separate cell (which will probably make it look somewhat weird, but there is something for you to work with

)
le="color: #000000"><?php <table cellpadding="0" cellspacing="0" class="item"> <tr> <td> <table cellpadding="0" cellspacing="0" width="98%"> <tbody> <tr> <td class="itemHead"> <span class="itemTitle"><{$story.title}></span> </td> </tr> <tr> <td class="itemInfo"> <{if $story.poster != ''}><span class="itemPoster"><{$lang_postedby}> <{$story.poster}></span><{/if}> <span class="itemPostDate"><{$lang_on}> <{$story.posttime}></span> (<span class="itemStats"><{$story.hits}> <{$lang_reads}></span>) </td> </tr> <tr> <td> <div class="itemBody"><{$story.imglink}></div> </td> <td><div class="itemBody"> <p class="itemText"><{$story.text}></p> </div> </td> </tr> <tr> <td class="itemFoot"> <span class="itemAdminLink"><{$story.adminlink}></span> <span class="itemPermaLink"><{$story.morelink}></span> </td> </tr> </tbody> </table> </td> </tr> </table>