Home › Forums › WoodMart support forum › Maximum n.of caracter for short description in the product grid › Reply To: Maximum n.of caracter for short description in the product grid
February 16, 2024 at 2:10 pm
#540705
Aizaz Imtiaz Awan
Keymaster
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.wd-product.wd-hover-base .hover-content {
display: -webkit-box;
-webkit-line-clamp: 3; /* Number of lines to show */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
Best Regards.