Hi,
I added a product to the hotspot image and need to apply a character limit on text shown or limit only to the product title, without the entire description. Title + add to cart button.
Try to add the following custom css code in Theme Settings -> Custom CSS
.hotspot-content .wd-entities-title {
display: -webkit-box; /* for line clamping */
-webkit-line-clamp: 1; /* number of lines to show */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}