Hi,
Please open to edit single-product at /neighborhood/woocommerce/
1- Find this code
<?php if ($sidebar_config == "left-sidebar") { ?>
<article <?php post_class('clearfix span8'); ?> id="<?php the_ID(); ?>" itemscope itemtype="http://schema.org/Product">
Change to :-
<?php if ($sidebar_config == "left-sidebar") { ?>
<article <?php post_class('clearfix span9'); ?> id="<?php the_ID(); ?>" itemscope itemtype="http://schema.org/Product">
2- Find this code :-
<aside class="sidebar left-sidebar span4">
<?php dynamic_sidebar($left_sidebar); ?>
</aside>
Change to :-
<aside class="sidebar left-sidebar span3">
<?php dynamic_sidebar($left_sidebar); ?>
</aside>
Thanks
Mohammad