go to your theme directory and see content-page…
replace the file content with this code.
<?php
/**
* The template used for displaying page content in page.php
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php do_action( 'colormag_before_post_content' ); ?>
<header class="entry-header">
<?php if ( is_front_page() ) : ?>
<h2 class="entry-title">
<?php the_title(); ?>
</h2>
<?php else : ?>
<h1 class="entry-title">
<?php the_title(); ?>
</h1>
<?php endif; ?>
</header>
<div class="entry-content clearfix">
<div class="featured-image"><?php the_post_thumbnail();?></div>
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'colormag' ),
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>'
) );
?>
</div>
<?php do_action( 'colormag_after_post_content' ); ?>
</article>