How do I change the product card subtitle font size?
Hi @Exclusive-Scent .
You can target/edit the subheading size like this:
1: Go to Online Store → Theme → Edit code
2: Search file base.css
3: Add the following code to the bottom of the file → Save
.grid__item .card__information > div {
font-size: 20px!important;
}
If done correctly, the result should be similar to this:
Feel free to adjust the px value to your liking.
I hope this helps!
Thank you but this didn’t work we are using refresh theme as well
I don’t see the code added to the website. You must’ve added it incorrectly.
I have just re-checked it, the selector works fine. It should change the font size if the code is added correctly.
You have added the selectors with single underlines, while it should be with double underlines. I suggest just copying the whole block.
You have an issue in your base.css file, there’s a missing closing brace in the keyframes rule. Just add the missing brace and it should work.
It should be something like this
@keyframes indeterminateAnimation {
0% {
transform: translateX(-20%) scaleX(0);
}
40% {
transform: translateX(30%) scaleX(0.7);
}
100% {
transform: translateX(100%) scaleX(0);
}}



