• Hello,

    On my woocommerce product pages, I would like to add white spaces between all images thumnbails in the gallery, and would also like the thumbnails not to be blurry. Would there be a CSS option to achieve this ? Could the blurriness be caused by an image optimisation plugin ?

    Many thanks,

    Quentin

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @qlucantis,

    Thanks for reaching us,

    The blurriness of the images might be fixed by using some image optimization plugin. So kindly use the third-party image optimization plugins and let me know if it fixes the issue or not.

    Likewise, for adding the spaces in between the thumbnails, Please try adding this CSS inside WordPress Dashboard > Appearances > Customize> Additional CSS and check it once?

    .woocommerce div.product div.images .flex-control-thumbs li img{
    width:150px;
    margin: 5px
    }

    Let me know if this helps you or not and I will be back.

    Regards

    Thread Starter qlucantis

    (@qlucantis)

    Hi,

    Many thanks for your suggestion !

    I have chosen the following ratio that works well for mobile :

    width:65px;
    margin: 2px

    However when on desktop, the images are obviously ridiculously small, could you kindly advise what would be the responsive CSS to have the same gaps on mobile and desktop ?

    Kind regards,

    Quentin

    Hi @qlucantis,

    Please try adding this CSS inside WordPress Dashboard > Appearances > Customize> Additional CSS and check it once?

    .woocommerce div.product div.images .flex-control-thumbs li img{
      width:150px;
          margin: 5px;
    }
    @media screen and (max-width: 768px){
        .woocommerce div.product div.images .flex-control-thumbs li img{
        width:100px;
    margin: 2px;
    }
    }

    Let me know if this helps you or not and I will be back.

    Regards

    Thread Starter qlucantis

    (@qlucantis)

    This worked very well many thanks for all the help!

    Have a great day,

    Quentin

    Hi @qlucantis,

    Glad to hear that it worked for you. Let me know of other queries in the future and I will be back.

    Also, if you like the Cenote theme, you can leave the review of the theme here: https://wordpress.org/support/theme/cenote/reviews/#new-post

    Regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Woocommerce photo gallery – margin & blurry thumbnails’ is closed to new replies.