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

#189403

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.