Hi!
just wondering if anyone knows how to Is increase the product price size on the homepage in the “featured collections” tab? I know it can be done by increasing the “base font” size but I don’t want the base font to increase, just the price.
thank you!!
1 Like
Hi!
Could you provide a link to the page in question so I can take a look?
Hi!
the theme isn’t live yet but here is the link of a preview
it’s the impulse theme.
https://kya4axby4wgo0ocq-8439839.shopifypreview.com
@Gypsymoon
Hi,
Welcome to Shopify community,
Kindly Share your Store URL, So that i can help you.
thank you.
Thats Perfect!
Head into your theme.css file and search for ‘.grid-product__price’
You should then see this block of code:
.grid-product__price {
font-size: calc(var(--typeBaseSize)*0.85);
color: #000;
color: var(--colorPrice);
margin-top: 5px;
}
Change the 0.85 to a bigger number until you find a size you are happy with.
If you need a hand doing this, send me your STORE.myshopify.com link and I shall request access and make the change for you 
1 Like
@Gypsymoon
.grid-product__price {
font-size: 18px !important;
}
Add this code in the bottom of theme.css file.
thank you.
Don’t add the extra line of code at the bottom as there is already an area for the font sizing, this will just create confusion for any future development.
Just edit the value that is already in the block I posted.
1 Like
Thank you! That worked perfectly!
You’re very welcome!
If you need any future help, feel free to private message me directly 
1 Like