How to reduce price font size in Colorblock theme?

Hello,

I am using Colorblock theme and my prices are too big font size. How do I change to smaller font size?

Here is my store: Produkter – Ekix & Co. (e2e2d2-3.myshopify.com)

Hi @erikimprov

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.price {
    font-size: 1.2rem;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

HI @erikimprov
If you want to decrease the font size, then You can try the below process
1**. Go to the Online Store**

**3.**Go to the component-card.css file
4. Then add

.card-information .price{
  font-size:1rem;
}

Output:

Thank you! This worked