Home Forums WoodMart support forum 3 dots Reply To: 3 dots

#572668

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.