Extending Product Code Character Quantity

Hello,

You can see my website via this link :

https://www.ebora.com.tr/dorma-en/ (also screenshot attached)

As you see, possible to write 34-35 characters to one row but it shows 2 row-3 row etc... How to minimize this feature...

I want to show my clients max one row..

I dont want to minimize font size (current 14 px) .... Is it possible to do such a thing ?

i use this in custom css format.

}
div.ty-grid-list__item-name .product-title{
font-size:14px;
font-weight: bold;

}

Ekran Alıntısı.PNG

Try to add the following code to the CSS section of the Theme editor

div.ty-grid-list__item-name .product-title {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}