Home › Forums › WoodMart support forum › 3 dots › Reply To: 3 dots
June 14, 2024 at 9:04 am
#572668
Aizaz Imtiaz Awan
Keymaster
Hello,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.wd-product .wd-entities-title {
display: -webkit-box !important;
-webkit-line-clamp: 2 !important; /* Ensure this is set to 2 for two lines */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}
Best Regards.