@devansh-webkul
Thanks for pointing out.
I have to overwrite the css form the velocity theme velocity.scss from this:
.product-card-new .card-body .product-name, .product-card-new .card-body .product-rating {
width: 15rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
To this:
.product-card-new .card-body .product-name, .product-card-new .card-body .product-rating {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
and the result was fantastic as needed ☺
b7147969-368f-4519-ac01-13e6ef79139a-image.png
Thanks once more my friend....