google-places
google-places copied to clipboard
Trunc review length?
Hi,
Is there a way to truncate the number of characters of a review?
Thanks,
Maurice
Put in your CSS:
.review-text {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
or, with fade effect, see here for the proper CSS: https://css-tricks.com/line-clampin/