google-places icon indicating copy to clipboard operation
google-places copied to clipboard

Trunc review length?

Open mauricejager opened this issue 5 years ago • 1 comments

Hi,

Is there a way to truncate the number of characters of a review?

Thanks,

Maurice

mauricejager avatar Mar 28 '19 08:03 mauricejager

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/

marcomarsala avatar Nov 17 '22 10:11 marcomarsala