How to put image below the post title?

Hello, this is the best theme I have ever encountered, just need to put the post title above the image so I start up my blog.
What to do to change the position?
Thank you very much

First open content-extensions.php file which is located in theme folder library - structure and move this code:

<?php
if( has_post_thumbnail() ) {
$image = '';        			
	$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
	$image .= '<figure class="post-featured-image">';
	$image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">';
	$image .= get_the_post_thumbnail( $post->ID, 'featured', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
	$image .= '</figure>';

	echo $image;
}
?>

down, right after

</header>

inside travelify_theloop_for_archive function. If you use blog template then you might have to do the same thing with travelify_theloop_for_template_blog_image_large function.

Thank you very very very much, got it, now I can continue with my project, thanks again…