How can I align product titles on mobile using the Crave theme?

On mobile, is it possible for the text to get cut off after 2 lines? Or display … after it gets cut off?
I don’t like how the titles, vendor, and price are not aligned. I’m using the Crave theme.

Website: https://alwayscreating.ca

Hi @alwayscreating ,

Go to Assets > base.css and paste this at the bottom of the file:

.card__information .full-unstyled-link{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

Hope it helps!