March 25, 2018 at 18:36
#192986
Moderator
Hi,
You can use the below CSS to add an ellipsis effect to the text.
COPY CODE
.search-item .search-body p {
overflow: hidden;
white-space: nowrap !important;
text-overflow: ellipsis !important;
}
Note: This will clip after one line
More info: https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution