Home Forums Basel support forum Sale price colour

Sale price colour

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #133319

    madpeter
    Participant

    Hi

    how can I change font colour for sale price in grid view and single product view?

    #133357

    Hello,

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

    /* STYLE OF FIRST PRICE */
    .product-grid-item .price .amount:first-of-type {
        color: red; /* COLOR */
        font-weight: 600; /* FONT WEIGT */
    }
    /* STYLE OF SECOND PRICE */
    .product-grid-item .price .amount {
        color: blue; /* COLOR */
        font-size: 16px; /* SIZE */
        font-weight: 600; /* FONT WEIGT */
    }

    Best Regards

    #133401

    madpeter
    Participant

    Thank you for your swift response. However, the code you suggested changed price colour for grid view only, when I’d like to change price colour for the single item view as well.

    Also, I presume that there is an error in the presented CSS, as your code sets both prices into the same colour – please see attached screenshot

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

    Hello,

    Try this code:

    /* STYLE OF FIRST PRICE */
    .product-grid-item .price .amount:first-child {
        color: red; /* COLOR */
        font-weight: 600; /* FONT WEIGT */
    }
    /* STYLE OF SECOND PRICE */
    .product-grid-item .price .amount:last-child {
        color: blue; /* COLOR */
        font-size: 16px; /* SIZE */
        font-weight: 600; /* FONT WEIGT */
    }
    body .single-product-content p.price .amount:first-child  {
         color: red; /* COLOR */
    }
    body .single-product-content p.price .amount:last-child {
         color: blue; /* COLOR */
    }

    If it does not work, please provide your site URL

    Best Regards

    #133431

    madpeter
    Participant

    Unfortunately, no luck

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

    madpeter
    Participant

    Link to the site attached

    #133517

    Hello,

    Please replace the code and change the color as per your needs:

    body .price ins .amount {
    color: red;
    }
    
    body .single-product-page .price ins .amount {
    color: red;
    }

    Best Regards

    #133646

    madpeter
    Participant

    Thanks, works like charm now

    #133711

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘Sale price colour’ is closed to new replies.