How to change the font size of a title

Hello guys, how can I change this font size?

Here is the URL and password:

https://www.nistore.de/
nikthe

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

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);
  }
}
1 Like

Hello, thanks for your help!