Home Forums WoodMart support forum Amount of Thumbnail images on Product pages

Amount of Thumbnail images on Product pages

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #139491

    Schuifdeurexpert
    Participant

    Hello,

    I have set my Thumbnails position as ´Bottom (horizontal carousel)´.
    By default it only shows 1 row of 4 images on desktop and 3 on Mobile.

    I would very much like to change this to 2 rows with the possibility for 8 images on desktop and 6 on mobile.

    Would it be possible to create this?

    #139533

    Hello,

    It is not possible with CSS, such modification requires more complicated modification which is not covered by our support.

    Best Regards

    #147830

    Schuifdeurexpert
    Participant

    I would like to give this a chance with a different approach.
    I have set the thumbnail images settings to: Bottom (2 columns). Now what I would like is 3 columns instead of 2.

    So I was able to resize the images to 2/3 of their original size with this code:
    /* Thumbnail images product pages kleiner maken*/
    .attachment-woocommerce_single.size-woocommerce_single{
    Max-width: 66.67%;
    }

    What I now need is a css code that will re-align the images next to each other without the empty space (see picture)

    Would you be able to give me any suggestions for this?

    Attachments:
    You must be logged in to view attached files.
    #147876

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    This code would align the blocks into one row.

    body .thumbs-position-bottom_combined .product-image-wrap, 
    body .thumbs-position-bottom_grid .product-image-wrap {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 33%;
        flex: 1 1 33%;
        max-width: 33%;
    }

    You need to upload bigger images https://gyazo.com/d524f1af7346d5eb2e973b4d02cb311f

    Best Regards

    #147901

    Schuifdeurexpert
    Participant

    Thank you, this is working.

    Would you also have a solution for this on Mobile view? The thumbnail pictures are being shown with carousel on mobile view and I can not seem to change that.

    #147971

    Hello,

    The bottom (2 columns) layout is transformed into the carousel and we cannot change that. Here is the demo of how it works: https://woodmart.xtemos.com/shop/furniture/scelerisque-pulvinar-ligula/?opt=images_col2

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)