on our products page we have a “recently viewed products” and “you may also like” slider, how do we align the products height and line up the buttons?
I have had this issue on the collection page and solved it with the following in the style.css, what else do i need to add to make this fit other functions?
.product-info__caption .title {
font-size: 12px; /* Example size, adjust as needed */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-list .thumbnail, .slider-gallery .thumbnail, .list-collections .thumbnail
{
display: flex;
flex-direction: column;
justify-content: space-between;
}