Hi @salmanwanix
Try adding the below properties to you title element
.your-title-element-class{
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
Replace “your-title-element-class” with your title’s class.
If this information was helpful to you, please give it a Like. If it resolved your issue, kindly hit Like and mark it as the Solution! Thank you!