how to change price size on product page

hello, I want to change the size to 18px,

Hi @momo110

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hello @momo110 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code at the bottom:

.product span.price-item.price-item--sale.price-item--last {
    font-size: 18px !important;
}

If it works don’t forget to Like it and Mark it as Solution!

Thanks

Hi, @momo110
Please try like this.
store->theme->edit code
component-price.css->
.price-item {
font-size: 18px;
}