Hi,
I want to make sure I have everything correct. Is it the case that you want the glasses displayed more towards the center of the page?
If that is the case I would recommend taking a look at the CSS for the woocomerce plugin.
The could looks like this:
//*————–PLUGIN SUPPORT————–*/
/*WOOCOMMERCE SUPPORT*/
div#container {width: 70%;float: left;}
.woocommerce #woocontent{ margin:30px 0;}
#review_form_wrapper form{ margin-top:30px;}
.woocommerce #reviews h3, .woocommerce-page #reviews h3{margin: 40px 0 20px 0;}
.woocommerce .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {padding: 7px;opacity: 0.7;}
.woocommerce .related ul.products li.product, .woocommerce-page .related ul.products li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .upsells.products ul.products li.product, .woocommerce .related ul li.product, .woocommerce-page .related ul li.product, .woocommerce .upsells.products ul li.product, .woocommerce-page .upsells.products ul li.product{width:18%!important;}
.woocommerce .star-rating span, .woocommerce-page .star-rating span{ color:#F4D431;}
.woocommerce.single .breadcrumbs {margin-top: -30px;padding-bottom: 20px;}
/
You will see the second line that says : div#container {width: 70%;float: left;}
You can change that to:
div#container {width: 70%;float: center;}
Or you can omit the float altogether.
I can’t tell you where to edit this information on your end, but in my testing that seemed to work well.
I hope this helps!