Custom Code
Browse coded solutions using simple css and javascript
1.0. Coded Solutions
1.1. Shorten Long Text
<style>
/* FeedSpring Short Text CSS */
.truncate-text {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal; /* Ensures text wraps and doesn't stay in a single line */
}
</style>1.2. Add an expand / show-more button
Last updated