Make the titles more similar

Hello, I would like to make my product titles on the homepage and collections page more similar to this website:

https://www.hlfprodukte.com/

if you look at their titles, if they are too long, they disappear, while mine are fully displayed.

My store link: https://bsyzza-cu.myshopify.com/

Hi @Baaaldo

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-block__title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hello @Baaaldo

Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.

.product-block__title {

white-space: nowrap;

text-overflow: ellipsis;

overflow: hidden;

}

Looks like the solution is the same. And I comment first? hmmm.. :thinking: