Hello @dawnmariehoward,
Thank you so much for using our theme AcmeBlog. If you want to add Read More text in place of ... in front page, you need to customize the theme. Find the function acmeblog_excerpt_more() in acmethemes/hooks/excerpts.php and you can override from the child theme. Hope, this will solve your problem.
if ( !function_exists('acmeblog_excerpt_more') ) :
function acmeblog_excerpt_more($more) {
return '<a href="'.get_permalink().'">'.__('Read More' , 'acmeblog').'</a>';
}
endif;
Note: Child Theme is recommended to customize theme. https://www.acmethemes.com/blog/2016/07/child-themes-and-its-importance/ You can visit theme support forum for dedicated support. http://acmethemes.com/supports
Regards
Acme Themes