Home › Forums › WoodMart support forum › My horizontal line is not uniform › Reply To: My horizontal line is not uniform
December 11, 2017 at 7:49 am
#28291
Artem Temos
Keymaster
Hi,
Try to add the following code snippet to the Custom CSS section for tablet devices only
div.product-image-summary-inner {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.product-image-summary-inner > div {
-ms-flex-preferred-size: 100%!important;
flex-basis: 100%!important;
max-width: 100%!important;
width: 100%!important;
}
.product-image-summary-inner .product-images {
margin-bottom:20px;
}
div.product-image-summary-wrap .product-image-summary {
-ms-flex-preferred-size: 70%;
flex-basis: 70%;
max-width: 70%;
width: 70%;
}
div.product-image-summary-wrap .area-sidebar-product-single {
-ms-flex-preferred-size: 30%;
flex-basis: 30%;
max-width: 30%;
width: 30%;
}
Regards