Can I move the post title above featured image?

Hey, I was wondering if it’s possible to move the title of the post from below the featured image to above it.

I’m using the Ethos Stack.

1 Like

Hello There,

Thanks for writing in! To resolve your issue and move the title above the featured images, please add this JS code in the Theme Options > Global JS (http://prntscr.com/evswzb)

(function($){
  $('.single-post .entry-featured').insertAfter( '.single-post .entry-header' );
  $('.single-post .entry-featured').css({'margin-top' : '20px', 'margin-right' : '0' });
})(jQuery);

Hope this helps. Please let us know how it goes.

2 Likes

Worked perfectly, many thanks.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.