Viewing 30 posts - 1 through 30 (of 30 total)
  • Author
    Posts
  • #689078

    Hi, i can’t change the size of product, I would like the size product is the same

    I have change px in woocommerce settings > products > display > product images, but doesn’t work.

    Thanks
    Regards

    #689659

    Hi kyra1883,

    Could you post a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #689730

    Hi Rikard!
    Yes, of course.
    There is this problem in the 3 e-commerce (sorry but I’ve problems with catalog import, in effect some products or category are invisible. I’m desperate, I hired I professional but it’s from june she work on that problem and haven’t solved yet).

    Thanks
    Best regards

    #691468

    Hi,

    You should upload images with the same size or proportion. Images with various sizes will likely to produce different thumbnails.

    Best regards,
    Ismael

    #691551

    Hi Ismael, I can’t upload images with the same size because are images of csv file (catalog), I use wp all import and it upload images automatically.

    Thanks
    Regards

    #692320

    Hi,

    Have you tried regenerating thumbnails after changing their sizes in WooCommerce settings? You can use this plugin to do so – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #692366

    Hi Yigit, yes, I have tried it but doscn’t work =(

    Thanks
    Regards

    #693856

    Hi,

    can you provide us a precise links where we can see the images in question please?

    Best regards,
    Andy

    #693896

    Hi Andy!
    Yes, of course.

    Thank you very much
    Best regards

    #695466

    Hi,

    if you want same height for all your images, try this code inside Quick CSS field:

    ul.products li a img {
    height: 400px;
    }
    

    and adjust as needed. Don’t forget to clear browser cache and hard refresh a few times.

    Best regards,
    Andy

    #695544

    Hy Andy!
    Thank you very much!
    I’ve solved, but not completely.
    Page “shop” has a useless white space =( I’ve tried to change it in woocommerce > settings > products > display (see images) but don’t restrict.
    Then, when entry in a category, images are too big yet =( (see link 1), images are blurry even..While in a product page doesn’t blurry (link 2)

    Thank you very much

    #696374

    Hi,

    I can’t see any useless white space on the link you’ve provided. Can you share a precise link showing what you are showing in your screenshot please?

    Best regards,
    Andy

    #696399

    Hi Andy!
    Yes, of course.

    #696465

    Hi,

    try this code:

    .shop_columns_3 .products .product {
    width: 19%;
    }
    

    and adjust as needed.

    Best regards,
    Andy

    #696537

    Oh Andy, I love you!!! *_*
    Last problem with images: In categories page, images of products hasn’t same size yet (link), why? All others images are ok.
    You’re very very very very very very very very kind!
    Thank you so much

    #697270

    Hi,

    to change image sizes on the last link you’ve provided, use this code:

    #top .thumbnail_container img {
    width: 250px;
    max-width: 250px;
    height: 250px;
    }
    

    and adjust the values as needed.

    Glad you are happy!

    Best regards,
    Andy

    #697755

    Hi Andy, doesn’t work =(

    #697830

    Hi,

    try to add an !important:

    #top .thumbnail_container img {
    width: 250px !important;
    max-width: 250px !important;
    height: 250px !important;
    }
    

    Don’t forget to clear browser cache and hard refresh a few times.

    Best regards,
    Andy

    #697897

    Hi Andy..doesn’t work =(
    I think the container size depends how many rows there are in description (image).

    Thank you
    Best regards

    #698598

    Hi!

    Apply a minimum height to the description containers.

    #top .inner_product_header {
        min-height: 178px;
    }

    Regards,
    Ismael

    #698783

    Hi Ismael!
    Works! *_*
    But doesn’t work in “shop page”, “categories pages” and “subcategories pages” =( (link)

    Thank you so much
    Best regards

    #699099

    Hi,

    you can adjust width on your shop page with this code:

    div .products .product a, div .products .product a img {
    width: 150px;
    }
    

    Best regards,
    Andy

    #699201

    Hi Andy!
    Doesn’t work =( (images)

    #699866

    Hi,

    of course you need to adjust the value by yourself, to find what fits best to you. I logged into you backend and put this into your Quick CSS field:

    /*kriesi custom code*/
    div .products .product a, div .products .product a img {
    width: 175px;
    }
    

    and it seems to adjust the images, but as said adjust it as you need it.

    Best regards,
    Andy

    #700190

    Hi Andy!
    I do it..but the images hasn’t same size yet in shop page (image and link1), “categories pages” and “subcategories pages” (other links)
    Thank you very much
    Best regards

    #701152

    Hi,

    Try this code:

    li.product-category.product {
    width: 22%;
    }

    And adjust as needed.

    Best regards,
    Andy

    #701206

    Hi Andy!
    Doesn’t work..the height doesn’t change =( The problem is the height =(

    Thanks
    Best Regards

    #702330

    Hi,

    then simply use height instead of width value in my code:

    li.product-category.product {
    height: 240px;
    }

    Also this might be useful to you:

    #top .products .product-category img {
    height: 240px;
    }

    Best regards,
    Andy

    #702590

    Hi Andy!
    I used first code…works *_*
    Thanks thanks thanks thanks!!!

    Best regards

    #703549

    Hi,

    Great! Glad @andy could helped. :)

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 30 total)
  • The topic ‘Product size (in woocommerce)’ is closed to new replies.