All things Shopify and commerce
Hi, I have an shopify website using shella theme.At collection pages I use an option “ trim title to one line “ ,this option trim titles of product cards to one line.The point is that I want 2 lines instead of one, how I can achieve this? Pls help 😆😁😃
Hi @Sao23 ,
In the Assets folder, look for a file named theme.scss.liquid or styles.scss.liquid (the name may vary).
Click on the file to open it for editing.
Scroll to the bottom of the file and add the following CSS code:
.product-card__title {
overflow: hidden; /* Prevents overflow */
display: -webkit-box; /* Enables flexbox layout */
-webkit-line-clamp: 2; /* Limits to 2 lines */
-webkit-box-orient: vertical; /* Specifies the orientation */
height: auto; /* Ensures height is calculated automatically */
}
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025