• Hi i would like to limited the characters that are show in the product category description loop and i would like to know how i can do it. Thank you

Viewing 1 replies (of 1 total)
  • Hi @carlosgr7,

    Would you please try adding the following CSS code in Appearance > Customize > Additional CSS

    .term-description p {
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 23px;
        min-height: 43px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 70px;
    }?

    You need to play around with the min-height and height to show more/fewer lines. And please modify the code above as per your needs.

    Furthermore, since this is WooCommerce functionality, ?you might want to get in touch with the WooCommerce team to get the best answer in a better manner.
    ?
    ?I hope that will help.

    ??Kind regards,
    ?Herman ??

Viewing 1 replies (of 1 total)
  • The topic ‘[NSFW] Problem with product description category loop’ is closed to new replies.