@rob4236
Hi there,
We created a custom field for the featured image… Added this to front-page.php
<div class="page_text_container">
<?php if( get_field('url_for_featured_image') ): ?>
<a href="<?php the_field('url_for_featured_image'); ?>"><?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?></a><?php endif; ?>
<h1 class="entry-title"><a title="<?php the_title_attribute(); ?>" href="<?php the_field('url_for_featured_image'); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?><a class="more-link" title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>"><?php _e( 'Read more','radiate' ); ?></a>
</div>
Hope this helps