Home › Forums › WoodMart support forum › Hello, how can I shorten the name of a product to 1 line? in widget › Reply To: Hello, how can I shorten the name of a product to 1 line? in widget
April 23, 2020 at 10:58 am
#189403
Aizaz Imtiaz Awan
Keymaster
Hello,
I saw the screenshot you attached to limit the product title in the widget on the main page. You need to add the following Custom CSS in the Custom CSS for desktop area under Theme Settings >> Custom CSS.
.product_list_widget a {
white-space: nowrap !important;
overflow: hidden;
text-overflow: ellipsis;
}
Best Regards.