Hello,
the layout templates for the module are in the module tmpl folder, and correspond to the layout names, so for example if you are using the default layout it will be in the file tmpl/default.php
To put the image tag before the title tag you will need to modify line 9, change from:
<div class="featureditems_item<?php echo $params->get('moduleclass_sfx'); ?>"><<?php echo $params->get('headertag','div'); ?> class="featureditemsheading<?php echo $params->get('moduleclass_sfx'); ?>"><a href="<?php echo $item->link; ?>" class="featureditems<?php echo $params->get('moduleclass_sfx'); ?>"><?php echo $item->heading; ?></a></<?php echo $params->get('headertag','div'); ?>>
to
<div class="featureditems_item<?php echo $params->get('moduleclass_sfx'); ?>">
<?php echo $item->imageTag; ?>
<<?php echo $params->get('headertag','div'); ?> class="featureditemsheading<?php echo $params->get('moduleclass_sfx'); ?>"><a href="<?php echo $item->link; ?>" class="featureditems<?php echo $params->get('moduleclass_sfx'); ?>"><?php echo $item->heading; ?></a></<?php echo $params->get('headertag','div'); ?>>
You will also need to remove line 15:-
<?php echo $item->imageTag; ?>
Otherwise the image will show twice.
The css for the layouts is in the folder css/layouts, for the default layout it is the file css/layouts/default.css
To change the margin for the image you will need to modify the style rule, for example:-
img.featureditems_image{ margin:4px;
margin-right: 10px;
border-width:1px;
border-style:solid;
float:left;
}
You may need to experiment to get the result that you want, as the display will probably be affected by your site template as well.