Closed scrubmx closed 10 years ago
I think this could be solved with a simple CSS trick
Make the h3 tag of the titles truncate the text and show an ellipsis like this
h3{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
Maybe show the entire title on hover?
h3:hover{ white-space: normal; }
This has been resolved with the most recent design iteration. Thx.
I think this could be solved with a simple CSS trick
Make the h3 tag of the titles truncate the text and show an ellipsis like this
Maybe show the entire title on hover?