Hi @JADIS ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Change Size And Colors Of Font, let’s try this solution:
Online Store ->Theme ->Edit code->theme.liquid
I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly
From looking at the code. That specific item looks to be a regularly priced item. It has it’s own font-size of 1.6rem.
And the other items are on sale with a font-size of 12px. Which you applied with the recent code change.
If you want to adjust the size for regular priced items as well. You can probably add with your current code:
.price {
color: #F2F2F2 !important;
}
Also I’d like to add, adding !important and the placement of the current code can lead to later issues if you continue to customize. Just something to be aware of if you continue to add customizations. It will be harder to track down. This one off is fine though.