Home Forums WoodMart support forum Hotpoint image

Hotpoint image

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #701582

    agentiaclickclick
    Participant

    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.

    Attachments:
    You must be logged in to view attached files.
    #701648

    Hello,

    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;
    }

    Best Regards,

Viewing 2 posts - 1 through 2 (of 2 total)