How can I adjust product title length for uniform 'Add to Cart' positioning?

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!

1 Like