I just added this to functions.php and it works:
// Code to Display Featured Image on top of the post
add_action( ‘genesis_entry_content’, ‘featured_post_image’, 8 );
function featured_post_image() {
if ( ! is_singular( ‘post’ ) ) return;
the_post_thumbnail(‘post-image’);
}
Just need to fix css spacing at the bottom of the image, but otherwise perfect.