Home Forums WoodMart support forum Dont Show High price

Dont Show High price

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

    attilio
    Participant

    Hallo, is possibile to show only low price in the product shop? look attachments.
    Regards

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

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global

    body .product-grid-item .price,
    body .single-product-page .summary-inner > .price {
            font-size: 0;
    }
    .single-product-page .summary-inner > .price > span:first-child {
       font-size: 22px;
    }
    .single-product-page .summary-inner > .price > small {
        font-size: 18px;
        margin-left: 6px;
    }
    body .product-grid-item .price > ins,
    body .product-grid-item .price > span:first-child {
       font-size: 14px;
    }
    body .product-grid-item .price > del {
        font-size: 12px;
        margin-right: 3px;
    }
    body .product-grid-item > .price > small {
        font-size: 12px;
        margin-left: 4px;
    }
    body .single-product-page .summary-inner > .price > ins,
    body .single-product-page .summary-inner > .price > span:first-child {
       font-size: 22px;
    }
    body .single-product-page .summary-inner > .price del {
        font-size: 22px;
        margin-right: 6px;
    }

    Best Regards

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