display more than 2 lines on product archive for product name ?
-
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.
Hello,
Can you please share the page URL so I can check and give you a possible custom css code.
Best Regards,
for example here
but it happens on any and all pages
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,