How to change the font size of a title

Solved

How to change the font size of a title

NikosBat
Trailblazer
449 1 94

Hello guys, how can I change this font size?

Here is the URL and password:

https://www.nistore.de/
nikthe

 

1.png

Accepted Solution (1)

BiDeal-Discount
Shopify Partner
540 58 127

This is an accepted solution.

Hi @NikosBat 

 

let try to add custom css below to your code then see the result:

@media screen and (max-width: 749px) {
  .newsletter__wrapper> .h2 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}
- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330

View solution in original post

Replies 3 (3)

NikosBat
Trailblazer
449 1 94

I forgot to mention, I want to change only for mobile users!

BiDeal-Discount
Shopify Partner
540 58 127

This is an accepted solution.

Hi @NikosBat 

 

let try to add custom css below to your code then see the result:

@media screen and (max-width: 749px) {
  .newsletter__wrapper> .h2 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}
- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
NikosBat
Trailblazer
449 1 94

Hello, thanks for your help!