Hey Christopher,
Thank you for reaching out to us. To move the post meta between the featured image and the title, create a new file and name it _content-post-header.php and paste the following code inside:
<?php
// =============================================================================
// VIEWS/INTEGRITY/_CONTENT-POST-HEADER.PHP
// -----------------------------------------------------------------------------
// Standard <header> output for various posts.
// =============================================================================
?>
<header class="entry-header">
<?php x_integrity_entry_meta(); ?>
<?php if ( is_single() ) : ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php else : ?>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a>
</h2>
<?php endif; ?>
</header>
Then via FTP upload the file to /pro-child/framework/views/integrity/ in your child theme. If you don’t find a directory then create one so you have this path /pro-child/framework/views/integrity/
Hope this helps!