Here’s one way to do it:
For the blog index, make a copy of content.php and put it in your child theme.
Move these lines below line 25:
<?php if ( 'post' == get_post_type() ) : // Hide meta for pages on Search ?>
<footer class="entry-meta">
<ul class="clear">
<?php writr_meta(); ?>
</ul>
</footer><!-- .entry-meta -->
<?php endif; ?>
To do the same on your single posts, copy content-single.php into your child theme. Move these lines below line 31:
<footer class="entry-meta">
<ul class="clear">
<?php writr_meta(); ?>
</ul>
</footer><!-- .entry-meta -->
If you want to hide the double lines that come along with the post footer styles, you can add this to your child theme:
.entry-meta {
border-top: none;
}
I tested this on my end and it looks good! Let me know how it goes.