Home › Forums › WoodMart support forum › Product Spacing on Grid and Carousel › Reply To: Product Spacing on Grid and Carousel
March 9, 2022 at 3:03 pm
#359227
Artem Temos
Keymaster
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.products.align-items-start {
align-items: stretch!important;
}
.website-wrapper .wd-hover-standard {
display: flex;
flex-direction: column;
align-items: center;
}
.website-wrapper .wd-hover-standard .price {
margin-bottom: 5px;
margin-top: auto;
}
.website-wrapper .wd-hover-standard .star-rating {
margin-top: auto;
}
.website-wrapper .wd-hover-standard .star-rating + .price {
margin-top: 0;
}
.slider-type-product .owl-stage {
display: flex;
align-items: stretch;
}
.slider-type-product .owl-stage .owl-carousel-item,
.slider-type-product .wd-hover-standard {
height: 100%;
}
Regards.