hi michaelbanks,
I would like to answer your questions as follows:
+ It’s the grey text displayed beneath the images.
=> I checked your website but could not find the ja news module. You are not using it. Also i have checked our template again but could not find this issue.
+ Also, is it possible to make the image clickable through to the article?
=> It is possible. Please open templatesja_cooper_businesshtmlmod_janewsblog_item.php file, at about line 46, find following code:
[PHP]<?php if ($showimage) : ?>
<?php echo $image; ?>
<?php endif; ?>[/PHP]
and change to
[PHP]<?php if ($showimage) : ?>
<a href=”<?php echo $link;?>” title=”<?php echo strip_tags($row->title);?>”><?php echo $image; ?></a>
<?php endif; ?>[/PHP]