Hi i want to change the color of the price from black to redd

I was unable to change the color from black to red in the theme options. This is my link store: https://f82f32-e9.myshopify.com/

1 Like

Go to Edit Code > open theme.liquid file and search for the tag and above this tag just paste below code -


Please let me know when works and mark as solution!

Hi @MonkataWe

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.card-information>.price {

color: red !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Additionally, you can use this code to make the header centerable like this:

header {
grid-template-columns: unset !important;
}

nav.header__inline-menu {
display: flex;
flex-direction: row;
justify-content: center;
}

Hi @MonkataWe

Do you like to make all red including the original price? or not?

Also, only on the feature collection or also in the product page?

This is code I use for the shared image.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

span.price-item.price-item--sale.price-item--last {
    color: red;
}

And save.

can i make only the ÂŁ28.99 red?