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

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

MonkataWe
Tourist
5 0 2

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/

Replies 5 (5)

saim007
Shopify Partner
602 74 102

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

<style>
.price-item {
    color: red;
}
</style>

Please let me know when works and mark as solution!

Saim | Shopify Partner Expert

Was I helpful?

Buy me a Coffee

🙂
Hire me   to unlock the full potential of your e-commerce store 🙂

PageFly-Henry
Shopify Partner
1184 335 289

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

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

PageFly-Henry
Shopify Partner
1184 335 289

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;
}



PageFlyHenry_0-1718027264653.png

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Made4uo-Ribe
Shopify Partner
8220 1972 2412

Hi @MonkataWe 

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

Made4uoRibe_0-1718027964547.png

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.

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
MonkataWe
Tourist
5 0 2

can i make only the £28.99 red?