How can I decrease the font size in a particular section?

Hi everyone, do you know how to reduce the font size of this section?

https://refade-8966.myshopify.com/

password: refade

1 Like

Hi @Marco211

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.footer-block__heading {

font-size: 10px !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hi @Marco211

I just want to clarify, which section you like to redue? It is the banner or the product?

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

Sorry I didn’t upload the image

Thank you very much

1 Like

Thanks for the info, check this one.

  • 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:
.cart-drawer h2 {
    font-size: 2rem !important;
}
.cart-drawer p, .cart-drawer a {
    font-size: 1.2rem !important;
}

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

1 Like