Home Forums WoodMart support forum Single Product Page change the font size and limit the characters

Single Product Page change the font size and limit the characters

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

    Stryker
    Participant

    Hello, Can I edit the Single Product Page and change the font size and limit the characters so it doesnt look so messy? Thanks, Please see screenshot

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

    Hello,

    Try to add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS. Change the value as per your requirements.

    .single-product .product_title {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 30px !important;
    }

    Best Regards

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