Themt: Dawn, some product titles are long and the price positions below are misaligned

Hi there,

Price alignment, Why is the price position not aligned in the same column of products?

How and where should I add the code?

Limit characters of your product title by finding this code below in product-card.liquid file of your theme.

{{ product_card_product.title | escape }}

Replace it with this code

{{ product_card_product.title | escape | truncate: 35 }}

You can change value 35 in the code on your own to make it fit with your theme.

2 Likes

@Edison18831 Can you please send me store url?

Thank you very much! I used this code, and it worked.

https://www.yeahmoment.com/

Is there another way to achieve this without using truncate as a method?

1 Like

Yes, it has. Could you share your store link so I can check?