Freeform Tag Truncation for Blurbs skin by sarken
Turns tags like "This is my very very very very long freeform tag" into "This is my very very very ver..." If you want the maximum length to be longer or shorter, copy this code and change the value of max-width.
- Users:
- 7
- Role:
- user
- Media:
- all
- Condition:
- normal
Navigation
CSS
.blurb ul.tags li.freeforms {
display: inline-block;
overflow: hidden;
margin: 0;
max-width: 15em;
text-overflow: ellipsis;
white-space: nowrap;
}
