We want to have 2 lines for the video titles instead of only one
Folks, our former Wishlist portal, where our users shared their requests and suggestions, was transferred to this forum. You’re most welcome to vote, add new ideas, and leave your comments here — we surely will consider them all!
Original Votes: 3
Original comment transferred from the previous Wishlist portal:
The titles for videos only display on one line and are often cut off which limits the ability for users to garner any sense of what the video is about in many cases. This reduces the utility of the plugin.
While Elfsight Team is working on this feature, adding the following CSS code to the Custom CSS field in the widget settings should help:
.global-styles,
:root {
--line-clamp: 2
}
.yottie-widget-video-info-title {
height: calc(var(--line-clamp) * 18px);
white-space: wrap;
display: -webkit-box;
-webkit-line-clamp: var(--line-clamp);
-webkit-box-orient: vertical;
}