Home Forums WoodMart support forum Retail Price And Sale Price Color

Retail Price And Sale Price Color

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #184597

    LakeOzark
    Participant

    I’m trying to change the color of the retail price (strikethrough price)

    Where can I do that?

    #184612

    Hello,

    You can change the font by means of Advanced typography option, which allows to choose the item from a drop-down or insert your custom CSS class. Please navigate to the Theme Settings > Typography > Advanced Typography.

    Here is the documentation providing more detailed instructions: https://xtemos.com/docs/woodmart/advanced-typography-settings/

    Best Regards

    #184633

    LakeOzark
    Participant

    I’m not sure where that font color is listed. It’s the retail price. Also, I wanted the sale price over the image to be red, and I know it’s currently on one of the primary colors that I want to keep green.

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

    Hello,

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

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

    Set the color as per your needs.

    Best Regards

    #184713

    magbaz
    Participant

    how to change the regular price with green and the on sale price to blue without change the primer color ..??

    #184716

    LakeOzark
    Participant

    Close. That’s backwards, though. Strikethrough price needs to be red. That makes the sale price red.

    #184717

    Hello,

    I did not know what color you need. That is why I specified “red” Replace the color with any as per your needs, for example – blue.

    You will get this code:

     .price ins .amount {
    color: blue;
    }
    
    .single-product-page .price ins .amount {
    color: blue;
    }
    
    del .amount {
        color: green;
    }
    

    Best Regards

    #184734

    magbaz
    Participant

    the regular price how to change it ? separated from them ?

    #184735

    LakeOzark
    Participant

    Not the sale price – the strikethrough price or the retail price.

    #184746

    magbaz
    Participant

    i got it now fix by my self :

     
    /* Color of On Sale price */
    .price ins .amount  {
    color: #c2161d;
    }
    /* Color of Regular price */
     .amount {
        color: #0060ac;
    }
    /* Color of Old price */
    del .amount {
        color: #777;
    }
    #184810

    Hello,

    If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘Retail Price And Sale Price Color’ is closed to new replies.