Hi theant,Yes, both of those can be done through a template override. After you've created the template override, find this line:
echo HTMLHelper::_('string.truncate', strip_tags($item->introtext), $introtext_truncate);Replace it with:
echo HTMLHelper::_('string.truncate', $item->introtext, $introtext_truncate, true, true);For the image link, simply find this part :
<a href="<?php echo $item->link; ?>" ...
and replace it with :
<a href="<?php echo $thumb_img[1]; ?>" ...