I hate wordpress themes which automatically displays in excerpts on the frontpage.
In nearly all cases, it is not possible to edit this in the theme options.
In order to get this done via the editing the code try the following:
Search for:
<div>
<?php the_excerpt(); ?>
</div>
and replace it with:
<div>
<?php the_content(); ?>
</div>

