A space to discuss online store customization, theme development, and Liquid templating.
Hello
I am working on a new store and i want to modify the price color and font-size. I don`t know how to do this. please assist me
Sense is my store theme
Solved! Go to the solution
This is an accepted solution.
span.price-item.price-item--sale.price-item--last {
color: red;
font-size: 20px;
}
here you can change the color and font size.
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
Please share the store URL.
span.price-item.price-item--regular {
font-size: 20px;
color: red;
}
here you can change the color and font size.
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
I copied it on the bottom of base.css and still nothing..
On product page you want changes ? or every price on store?
On the product page. I want the current price to stand out with a diffrent color and font-size
This is an accepted solution.
span.price-item.price-item--sale.price-item--last {
color: red;
font-size: 20px;
}
here you can change the color and font size.
Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid
Is it also possible to make the colored sale price in bold? if so how?
Hello @Alllways
Please share the store URL so that i can check.