How To Change Product Price Size On Home Page

Thanks in advance!

I am looking to make my product prices a smaller size that works for both pc and mobile version. Example shown below.

Screenshot 2024-06-25 222215.png

https://decemberschild.com/

password: dc

Hi @MMast , Pls insert this code in file theme.liquid:

.price__regular .price-item--regular {
    font-family: cursive;
}

Here is result:

Hope this can help you

1 Like

Hello @MMast

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.price { font-size: 1.3rem !important; }

1 Like