Make sidebar less wide and enlarge pics?

Hi, I am really enjoying this theme and am hoping to be able to use it for my WooCommerce site.

I am just wondering if there is a way to do these things:
– Make the sidebar less wide
– Make the product pictures and category pictures larger
– take the sidebar off of the ‘view cart’ page

One of the most important ones for me is the larger pictures. I tried changing the dimensions in the woocommerce product image settings page but they always stay the same small size no matter what I do. Maybe there is somewhere else to do this that I am not seeing? I would prefer the images to be 300x300 or somewhere close to it anyways (even if it means that there would be fewer columns).

Hopefully if I can make these changes then this theme will be perfect for what I need :slight_smile:
Thank you so much for any help that you can provide.
Megan

  1. I recently answered similar question about columns in WooCommerce

This example sets 3 columns but it would be very easy to set 2 columns by changing item width and number of columns.

  1. To remove sidebar from WooCommerce cart you can use this code in Theme Options - Other - Custom CSS
.woocommerce-cart #secondary {
    display: none;
}
.woocommerce-cart .content-area {
    width: 100%;
}
  1. To make sidebar smaller you have to replace col-md-4 with col-md-3 in sidebar.php.
    Then replace col-md-8 with col-md-9 in all template files where you can find this value mentioned and then inside file called woo-setup.php which you can find in theme folder - inc.