Archived topic
product thumbnails
3 replies · Started by Bilal on March 22, 2019
Viewing posts 1–4 of 4
Hello,
How can I make the horizontal Thumbnails on the product pages.
Please help.
Thank you
Hi there,
you have this CSS, probably in Customizer > Additional CSS:
.woocommerce div.product div.images .flex-control-thumbs li {
padding: 5px 5px 0 0;
-webkit-box-sizing: border-box;
box-sizing: border-box
}
@media (min-width:460px) {
.woocommerce-page div.product div.images {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-item-align: center;
align-self: center
}
.woocommerce div.product div.images .flex-control-thumbs {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
order: -1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;
-ms-flex: 1 0 80px;
flex: 1 0 80px;
max-height: 340px;
overflow: auto
}
.woocommerce div.product div.images .flex-control-thumbs li {
width: 100%;
padding: 0 10px 10px 0
}
}
.woocommerce div.product div.images .flex-control-thumbs li {
padding: 5px 5px 0 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-flex: 1;
-ms-flex: 1 0 25%;
flex: 1 0 25%
}
.woocommerce div.product div.images .flex-control-thumbs {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
overflow: auto
}
Remove that and they will default to the normal row under the image
Hello David,
After download the GP Premium Version 1.8.0. and product "Tabs" size becoming to smaller. How can I make tabs a little more line height?
Thank you
This CSS:
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
line-height: 2.5em;
}
This archived topic is closed to new replies.