Home Forums WoodMart support forum products page attributes

products page attributes

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #698370

    htashrif52
    Participant

    Hello,
    There is an excessive gap between the heading and the name of the attributes that have been created on a single product page. How can I remove the gap in between?
    Please check reference image

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

    Hello,

    Can you please share the page URL so I can further check on your site and give you a possible solution?

    Best Regards,

    #698773

    htashrif52
    Participant
    #698896

    Hello,

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

    .single-product .shop_attributes tr {
        display: flex;
        flex-direction: row; /* stack name and value vertically */
        justify-content: flex-start;
        align-items: center;
        text-align: center;
            width: 50%;
        gap: 5px; /* control vertical spacing */
    }
    
    .single-product .shop_attributes th,
    .single-product .shop_attributes td {
        width: 100%;
        text-align: center;
    }

    Best Regards,

    #699571

    htashrif52
    Participant

    thanks

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