Home Forums WoodMart support forum How to add ”…” to end of the product names

How to add ”…” to end of the product names

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

    efealdogan.ru
    Participant

    Hello, I want to add ”…” to the end of the product names like in the images. Otherwise, it doesn’t look lovely. How can I add ”…” to the end of the product names?

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

    Hung Pham
    Keymaster

    Hi efealdogan.ru,

    Thanks for reaching to us and appreciate your patience.

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    h3.wd-entities-title{
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }

    Regards,

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