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
Hey everyone!
Using Empire theme, how do you add "FREE SHIPPING" next to the product price like this?:
And is it possible to color code it like this so it's in red?
I appreciate any help you can provide. Thanks!
STORE LINK: www.spacesavingbed.com
Solved! Go to the solution
This is an accepted solution.
Please add this code to theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.price.product__price:after {
content: '+ FREE SHIPPING';
color: green;
font-weight: bold;
display: inline-flex;
font-size: 20px;
align-items: center;
}
</style>
Best regards,
Dan from Ryviu
- 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.
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the </head> tag
<style>
.price__current.price__current--on-sale:after {
content: "+ FREE SHIPPING";
}
</style>
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.
Please add this code to theme.liquid file, after <head> in Online Store > Themes > Edit code
<style>
.price.product__price:after {
content: '+ FREE SHIPPING';
color: green;
font-weight: bold;
display: inline-flex;
font-size: 20px;
align-items: center;
}
</style>
Best regards,
Dan from Ryviu
- 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.