Hi there,
If that's the case, you just need to look for the following code:
<?php if ($this->entryParams->get('post_category', true)) { ?>
<div class="eb-meta-category comma-seperator">
<i class="fa fa-folder-open"></i>
<?php foreach ($post->categories as $cat) { ?>
<span><a href="<?php echo $cat->getPermalink();?>"><?php echo $cat->getTitle();?></a></span>
<?php } ?>
</div>
</div>
<?php } ?>
cut it and paste it above the following code:
<?php if ((in_array($post->getType(), array('photo', 'standard', 'video', 'email'))) && $this->entryParams->get('post_title', true)) { ?>
<h1 id="title-<?php echo $post->id; ?>" class="eb-entry-title reset-heading <?php echo ($post->isFeatured()) ? ' featured-item' : '';?> "><?php echo $post->title; ?></h1>
<?php } ?>
Add the following code beside class="eb-meta-category comma-seperator" for a better look (optional):
style="padding-bottom: 8px;"
Can you have a try and see how it goes?