Referring to the other support that got locked above. I’d like to keep my featured image full width and have the title above the image instead of below.
Here’s what i have in the custom java scrip
jQuery('.single-post .entry-featured').insertBefore(jQuery('.x-main'));
(function($){
$('.single-post .entry-featured').insertAfter( '.single-post .entry-header' );
$('.single-post .entry-featured').css({'margin-top' : '20px', 'margin-right' : '0' });
})(jQuery);
Thanks!