How do I change the color of price on collection

How do I change price tag color, and how do I remove FROM

theme: prestige

website: zoticnewyork.com

Hello @AMOB

Try this code: It will help to you-

Go to the online store>Theme>Edit code>Assets>theme.css>Add code in this file.

.Text--subdued {
    color: #000 !important;
}

@AMOB ,

.ProductListWrapper span.ProductItem__Price.Price.Text--subdued {
    color: red;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

For removing text you need to check with price in theme customizer area… or product admin panel for individual product.

As the guy above said, u gotta change this classes color in css

.Text–subdued {

  1. color: var(–text-color-light);

} , but Ill tell u a simple way of how to always find out what class u need to change to do ur changes. Inspect ur page, click on “select an element in the page to inspect it” and then just click on the checkmark in the inspect css and see what changes happen, if one checkmark has an effect on the thing u want to change, that class is what u want to rewrite.

Hi @AMOB .

I’m Richard Nguyen from PageFly- Free Landing Page Builder

You can go to Online store => themes => actions => edit code and add this code on file theme.css

span.ProductItem__Price.Price.Text--subdued{
color: red !important;
}

Hope this answer helps.

Best regards,

Richard | PageFly

how can I make it bold?

@AMOB ,

.Text--subdued {
    color: #000 !important;
    font-weight: bold;
}

issue now sale price is not red

Inspect the element and change its class to { color: red; } in css