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 there,
Does anyone know how I can change the color of my free shipping nudge text to white instead of black on my site cart? Below is the css for this particular element, but nothing I've tried adding has worked.
Thank you in advance!
-------------------------
.shipping-savings-message {
background-color: #9999ff;
border: 3px solid white;
padding: 20px;
text-align: center;
font-family: Poppins;
font-weight: bold;
margin-bottom: 25px;
Solved! Go to the solution
This is an accepted solution.
Hi @JennMaxwell
Please update your code to this
.shipping-savings-message {
background-color: #9999ff;
border: 3px solid white;
padding: 20px;
text-align: center;
font-family: Poppins;
font-weight: bold;
margin-bottom: 25px;
color: #fff;
}
.shipping-savings-message a {
color: #000; /* change color of continue shopping text */
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi, @JennMaxwell
Add the color to the class
.shipping-savings-message {
color: #fff;
}
Result:
Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!
This is an accepted solution.
Hi @JennMaxwell
Please update your code to this
.shipping-savings-message {
background-color: #9999ff;
border: 3px solid white;
padding: 20px;
text-align: center;
font-family: Poppins;
font-weight: bold;
margin-bottom: 25px;
color: #fff;
}
.shipping-savings-message a {
color: #000; /* change color of continue shopping text */
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
this worked perfectly!!! thank you SO much!
Hi @JennMaxwell ,
You can change the text color with the following CSS:
.shipping-savings-message,
.shipping-savings-message a {
color: #fff !important;
}
Result:
I hope this helps! If it does, please like it and mark it as a solution!
Thank You,
Sweans