He is adorable and your photos are great.
From ‘Appearance; Editor’ select ‘Single.php’
Move :
<p class=”byline”>In <?php the_category(‘, ‘) ?> on <?php the_time(‘j F Y’) ?> <?php the_tags(‘tagged ‘, ‘, ‘, ”); ?> with <?php comments_number(‘no comments’, ‘1 comment’, ‘% comments’); ?></p>
From right below the ‘the_title’ to below ‘the_content’
So Change:
<div class=”post”>
<h3><?php the_title(); ?><?php edit_post_link(‘Edit’, ‘<span class=”edit”>’, ‘</span>’); ?></h3>
<p class=”byline”>In <?php the_category(‘, ‘) ?> on <?php the_time(‘j F Y’) ?> <?php the_tags(‘tagged ‘, ‘, ‘, ”); ?> with <?php comments_number(‘no comments’, ‘1 comment’, ‘% comments’); ?></p>
<?php the_content(); ?>
</div><!– end post –>
to
<div class=”post”>
<h3><?php the_title(); ?><?php edit_post_link(‘Edit’, ‘<span class=”edit”>’, ‘</span>’); ?></h3>
<?php the_content(); ?>
<p class=”byline”>In <?php the_category(‘, ‘) ?> on <?php the_time(‘j F Y’) ?> <?php the_tags(‘tagged ‘, ‘, ‘, ”); ?> with <?php comments_number(‘no comments’, ‘1 comment’, ‘% comments’); ?></p>
</div><!– end post –>
You may also need to do the same to the ‘archive.php’.
Good luck