Hello Dutching ,
in just 2 steps you could resolve this:
STEP 1:
In your page.php find the below code;
<?php
if( function_exists('is_cart') && is_cart()) {
echo '</div>';
}
else {
echo '</div>';
echo '<div class="sidebar-wrap col-md-3 content-left-wrap">';
get_sidebar();
echo '</div>';
}
?>
Now replace with;
<?php
if( function_exists('is_cart') && is_cart()) {
echo '</div>';
}
else {
echo '</div>';
}
?>
STEP 2 :
In your page.php find the below code;
echo '<div class="content-left-wrap col-md-9">';
Replace with;
echo '<div class="content-left-wrap col-md-12">';