Home New Guten Forums WoodMart support forum display more than 2 lines on product archive for product name ?

display more than 2 lines on product archive for product name ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #662279

    qtwrk555
    Participant

    Hi,

    this option displays either 1 line , 2 lines or no restriction , which some product could have 10 lines or something

    is there any CSS trick I can make it display , let’s say , 5 lines ?

    Best regards

    Attachments:
    You must be logged in to view attached files.
    #662367

    Hello,

    Can you please share the page URL so I can check and give you a possible custom css code.

    Best Regards,

    #662443

    qtwrk555
    Participant

    for example here

    but it happens on any and all pages

    #662530

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .wd-product .wd-entities-title {
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: calc(1.4em * 5); /* 5 lines with 1.4 line-height */
    }

    Best Regards,

Viewing 4 posts - 1 through 4 (of 4 total)