I have a website page at the following link:
However, the content is not centered on the screen.
Here are the codes I'm using:
<div class="section_inner">
<div class="container">
<div class="row">
<?php
while ( have_posts() ) : the_post();
$id= get_the_ID();
?>
<div class="inner_body">
<div class="col-xs-10 col-sm-10 col-md-4 col-lg-10 border-pr">
<h2><?php the_title(); ?></h2>
<div class="inner_page_text">
<!-- <h2><?php the_title(); ?></h2>-->
<p><?php the_content(); ?></p>
</div>
</div>
<!--<div class="col-xs-10 col-sm-10 col-md-8 col-lg-8">
<div class="inner_right_text">
<h4><?php echo get_the_title(); ?></h4>
<p><?php the_content(); ?>
</p>
</div>
</div>-->
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<?php include_once('footer.php'); ?>
Is there a way to center the box to the screen?