Hi!
I am using Supreme theme on the site http://lustrelife.com/news/,and i am having some arrangement issues on the single (blog) post page.
Currently, theme first shows title&breadcrums, then post body, and bellow that social icons, commenting form, related articles…
What i would want is to show the image first, then post title&category, and then the post body.
In single.php, i found a code snippet that goes like this:
<div class=”page-heading clearfix”>
<h1><?php the_title(); ?></h1>
<?php if(function_exists(‘bcn_display’)) { ?>
<div class=”breadcrumbs-wrap”>
<div id=”breadcrumbs”>
<?php bcn_display(); ?>
</div>
</div>
<?php } ?>
<div class=”heading-divider”></div>
</div>
which pulls the title, and then the code that pulls the post body:
<div class=”body-text”>
<?php the_content(); ?>
</div>
What i dont understand is, how to add this code after the featured image.
I dont know did you understood me properly (english isnt my first language).
Thank you for your time!