Hello ComDoc,
To achieve what you have in mind, you will need to do the following:
1.) Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.single-product .x-container.max.width.offset {
width: 100%;
max-width: 100%;
}
2.) And then, please add the following code in your child theme’s functions.php file
function add_container_start(){
echo '<div class="x-container max width">';
}
add_action('woocommerce_before_single_product_summary', 'add_container_start', 5);
function add_container_end(){
echo '</div>';
}
add_action('woocommerce_after_single_product_summary', 'add_container_end', 5);
We would love to know if this has worked for you. Thank you.