How to display post title on top of image with Genesis Featured Posts

when blog section comes from posts then check the content.php in active particular theme.
and modify the html code

    <?php if ( is_single() ) : ?>
    <h1 class="entry-title"><?php the_title(); ?></h1>
    <?php else : ?>
    <h1 class="entry-title">
        <a href="https://wordpress.stackexchange.com/questions/195188/<?php the_permalink(); ?>" rel="bookmark"><?php the_post_thumbnail(); ?><?php the_title(); ?></a>
    </h1>
    <?php endif; // is_single() ?>

    <div class="entry-meta">
        <?php twentythirteen_entry_meta(); ?>
        <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
    </div><!-- .entry-meta -->
</header><!-- .entry-header -->

use this code above the thumbnail image.