Hi there,
It is possible for you to change the "Continue Reading", but you have to do some hacks on this file
...\components\com_easyblog\themes\*your current theme\blogs\latest\default.main.php
//Move these line of code as attached
<div class="eb-post-foot">
<?php if ($post->hasReadmore() && $this->params->get('post_readmore', true)) { ?>
<div class="col-cell eb-post-more">
<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>
</div>
<?php } ?>
<?php if ($this->params->get('post_hits', true)) { ?>
<div class="col-cell eb-post-hits">
<i class="fa fa-eye"></i> <?php echo JText::sprintf('COM_EASYBLOG_POST_HITS', $post->hits);?>
</div>
<?php } ?>
<?php if ($post->displayCommentCount() && $this->params->get('post_comment_counter', true)) { ?>
<div class="col-cell eb-post-comments">
<i class="fa fa-comments"></i>
<a href="<?php echo $post->getPermalink();?>"><?php echo $this->getNouns('COM_EASYBLOG_COMMENT_COUNT', $post->getTotalComments(), true); ?></a>
</div>
<?php } ?>
</div>
If you need help regarding this, can you provide us with your Backend and FTP access in order for us to replace this file for you?