Hi,
First of all, thank you for your continuous great work on the template X!
I just updated from v4.6.4 to v5.1.0 and everything went smooth and well.
After the major update of woocommerce 3, the image gallery has changed, now i need to customize the look of the gallery.
I didn’t find any settings on the thumbnail size or layout just two lines of css (on other forum post):
.single-product .flex-control-nav { position: static; }
.single-product .flex-control-nav li { float: left; }
that helped to move the thumbnails from the image to the bottom.
Can you provide any other custom css where i can change the thumbnail size and/or layout on the single product page (with main classes: woocommerce-product-gallery woocommerce-product-gallery–with-images woocommerce-product-gallery–columns-4 images).
I changed the thumbnail size to 120x120 and regenerated the images but all thumnails remain very small (24x24px in actual size and in the css integrity-light.css sized like height: 1.5em;)
I’m want to make the thumbnails about 75px and in 5 columns.
PS: after some reading in other forum posts i created css:
.single-product .woocommerce-product-gallery__image>a>img {
width:100%;
}
.single-product .flex-control-nav.flex-control-thumbs li {
float: left;
width: 15%;
margin-bottom: 8px;
}
.single-product .flex-control-nav.flex-control-thumbs li:nth-child(7), .single-product .flex-control-nav.flex-control-thumbs li:nth-child(13) {
margin-left: 0 !important;
}
.single-product .flex-control-nav.flex-control-thumbs img {
width: 100%;
height: auto;
}
.single-product .flex-control-nav.flex-control-thumbs {
position: relative;
padding-left: 0;
padding-right: 0;
padding-top:8px;
}
but still need better customization for smoother look, like thumbnail border, … etc.
Any help would appreciated,
Newman