Home Forums WoodMart support forum setting to appear 3 lines in product title instead of 3

setting to appear 3 lines in product title instead of 3

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

    giannisth
    Participant

    hello, is there a way please to show 3 lines on product title instead of 2? many of the titles are quite long, thank you

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

    Hello,

    Try to add the following code snippet to the Dashboard Custom CSS area in Theme Settings.

    .wd-single-title .product_title {
        display: -webkit-box;
        -webkit-line-clamp: 3; /* limits to 3 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    Best Regards,

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