4
To change the width and height of the image, then changes
le="color: #000000"><?php <img src="<{$xoops_url}>/modules/news/images/topics/<{$news.image_display}>" alt="<{$news.title}>" />
to
le="color: #000000"><?php <img src="<{$xoops_url}>/modules/news/images/topics/<{$news.image_display}>" alt="<{$news.title}>" [b]height="YOUR_HEIGHT" width="your_width"[/b]/>
and get rid of:
le="color: #000000"><?php <{$news.hometext}><br /> <a href="<{$xoops_url}>/modules/news/article.php?storyid=<{$news.id}>"><{$news.readmorelink}></a>
so all together you should have the followings:
le="color: #000000"><?php <{foreach item=news from=$block.stories}> <div class="xf_block four"> <h1><a href="<{$xoops_url}>/modules/news/article.php?storyid=<{$news.id}>"><{$news.title}></a></h1> <{if $news.image_display !=""}> <span style="float: <{$news.topicalign}>;margin-right: 15px; margin-top: 3px;"> <img src="<{$xoops_url}>/modules/news/images/topics/<{$news.image_display}>" alt="<{$news.title}>" height="your_height_here" width="your_width_here"/></span> <{/if}> </div><br /> <{/foreach}>