Dear Ann Demeyer,
Please go to your_site\modules\mod_sj_news_frontpage\tmpl\default_theme1.php and find:
<?php if( (int)$params->get('small_item_description_display', 1) ){ ?>
<div class="small-item-description">
<?php echo NewsFrontpageHelper::truncate($item->introtext, (int)$params->get('small_item_description_max_characters', 32));?>
</div>
<?php } ?>
=>
<?php if( (int)$params->get('small_item_description_display', 1) ){ ?>
<div class="small-item-description">
<?php echo NewsFrontpageHelper::truncate($item->introtext, (int)$params->get('small_item_description_max_characters', 32));?>
</div>
<?php } ?>
<div class="small-item-readmore">
<a href="<?php echo $item->link; ?>" <?php echo NewsFrontpageHelper::parseTarget($params->get('target')); ?> >
<?php echo $params->get('item_readmore_text', 'Product details'); ?>
</a>
</div>
Thanks!