• Hello, how are you?

    I created a service website with this wonderful theme.
    I have only one difficulty. With the photos.

    In the Woocommerce plugin I parameterized that the product images would be 100 x 100 px on the products page. But in Customz Theme it does not allow the image size to be smaller than the default theme.

    How can I change this parameter?

Viewing 1 replies (of 1 total)
  • Hi mcollina,
    actually WooCommerce’s style sets the product image to be 100% of the container.
    The container they refer to is set by the woocommerce style to be 48% (in desktop viewports) of the whole available space for the product (so it depends on whether or not you display one, two or no sidebars).

    You might want to use more appropriate sizes as suggested in the WooCommerce documentation:
    https://docs.woocommerce.com/document/fixing-blurry-product-images/

    Or use a custom CSS like this, keeping your sizes:

    .woocommerce div.product div.images img {
        width: auto;
        margin: auto;
    }

    But that’s not optimal.
    You might want to ask to the WooCommerce support on how to better style it.

    Hope this helps.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Size of Product image in product page’ is closed to new replies.