Good day,
I’ve added extra price to show price including and excluding VAT.
-
How can I make both of the prices smaller
-
How can I make the excluding VAT smaller than including VAT
-
I needs prices to be reduced on all pages
Thank you
Good day,
I’ve added extra price to show price including and excluding VAT.
How can I make both of the prices smaller
How can I make the excluding VAT smaller than including VAT
I needs prices to be reduced on all pages
Thank you
Hey @Voldiep ,
Can you share the link to your store? Thanks!
Hey @Voldiep ,
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.
The 12px is the excl price and the 14px is incl price. Change this to whatever you like.
Screenshot is for reference only, the correct code to paste is the one shown above.
add this css in your base.css file
.collection .price__container {
font-size: 15px !important;
}
.product .price__container {
font-size: 16px !important;
}
.product .product__text.inline-richtext strong {
font-size: 15px;
}
That’s amazing, thank you for the swift reply and help ![]()