Hi Jeremy, here's an example:
Create a copy of downloads_list.tpl in your skin folder, find:
<li>
<a href="<?php echo url('/downloads/dl/'.$download->id);?>">
<?php echo $download->name?></a><br />
<?php echo $download->description?><br />
<em>Downloaded <?php echo $download->hits?> times</em></li>
Replace:
<li style="overflow:hidden;">
<a href="<?php echo url('/downloads/dl/'.$download->id);?>">
<?php echo $download->name?></a>
<img src="<?php echo $download->image?>" style="float:right;" /><br />
<?php echo $download->description?><br />
<em>Downloaded <?php echo $download->hits?> times</em></li>
This adds the image on the right of the page, like so:
You can of course position and style the image/list item as you wish by editing the style="", or adding an id/class. The List Item has "style="overflow:hidden;"" to prevent the images overlapping, if you change the position of the image you may not need this any more.