Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi!
I want to update the font color of the price for items that have their Compare-at price filled out/badged with Sale flag on both desktop and mobile. How can I change the font color of Price to #641832 for these items on Trade Theme?
Here is my website.
Thank you!
Solved! Go to the solution
This is an accepted solution.
TRy this one.
span.price-item.price-item--sale.price-item--last {
color: #641832;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
This is an accepted solution.
TRy this one.
span.price-item.price-item--sale.price-item--last {
color: #641832;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
That worked! Thank you so much as always!
@Made4uo-Ribe is there a way to combine this color change and also make that sale Price bolded?
Yes, just add the font-weight or replace the code below.
span.price-item.price-item--sale.price-item--last {
color: #641832;
font-weight: 900;
}
And Save.
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!