Okay
  Public Ticket #3044161
Align Product Collumn Even with Different Title Sizes
Closed

Comments

  • Fernando started the conversation

    Hi,

    I'm trying to align the product columns even when their titles have different sizes (line quantity). How can I reach that? Is there a CSS code that can fix it? 

    The title doesn't need to show completely. Products which has 3 lines could appear as 2 lines and like "..." at the end.

    Thank you

  • [deleted] replied

    Hi Fernando,

    You can add this CSS code to your Custom CSS area:

    .woocommerce .products .product .item-info .item-info-row>.title-column h3 {
        overflow: hidden;
        text-overflow: ellipsis;
        height: 45px;
    }
    

    Have a nice day!