Hi There,
Please read this post.
Basically, you need to create a Field Group so you can add a Field/s.
When defining your Image Field, remember this two things. Field Name: page_image, Field Type: Image.
Then edit your Posts and you should see a new meta box on it, where you can upload the image.
You can then output the image on the posts by using this code.
<div class="x-container">
<img src="<?php echo get_field('page_image'); ?>">
</div>
You can paste that code above the block:
<!-- ------------------------------ -->
<!-- Custom Logo Section starts here -->
<!-- ------------------------------ -->
On Rue’s code above.
Cheers!