[Support request] Woo Commerce Images

Home Forums Support [Support request] Woo Commerce Images

Home Forums Support Woo Commerce Images

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #495625
    Jonathan

    I am totally at a loss. I am running woocommerce vs 4.9.4 on GPPremim vs 1.5.6 using WP 4.9.4

    Ok, I am downloading an image for my woocommerce store that that has the dimensions of 337×506. I set the Product “Main Image Width” to 337. However when it displays the image size is 577×866.344

    Go to https://design.kwikkopyshop.com and choose a T-Shirt. How can I get this image to properly display at the original size. I have deleted images, reuploaded them, regnerated thumbnails and still the same issue.

    Any ideas? Thanks in advance for your help

    #495839
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    WooCommere splits the single product layout in halves, then forces the image to take up 100% of the half.

    You can reduce the width of the image container with some CSS like this:

    .woocommerce #content div.product div.images, 
    .woocommerce div.product div.images, 
    .woocommerce-page #content div.product div.images, 
    .woocommerce-page div.product div.images {
        width: 20%;
    }
    
    .woocommerce #content div.product div.summary, 
    .woocommerce div.product div.summary, 
    .woocommerce-page #content div.product div.summary, 
    .woocommerce-page div.product div.summary {
        width: 70%;
    }

    We’re hoping to improve this in the near future.

    Let me know if it helps or not 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.