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

#540705

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.