Hey Nadia,
You may update the php code and use this:
// Recent Posts below the post content - Single page only.
// =============================================================================
add_action( "x_after_the_content_end", "add_post_shortcode" );
function add_post_shortcode() {
if( is_singular( 'post' ) ){
echo '<h2 class="recent_post_title">Recent Posts</h2>';
echo do_shortcode('[recent_posts count="2"]');
}
}
// =============================================================================
And then please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
h2.recent_post_title {
margin: 0 0 0.5em;
font-size: 200%;
}
We would love to know if this has worked for you. Thank you.