Reply To: How to change font size in site header

Home Forums Support How to change font size in site header Reply To: How to change font size in site header

Home Forums Support How to change font size in site header Reply To: How to change font size in site header

#61986
Tom
Lead Developer
Lead Developer

Hi there,

Your best bet is to reduce the size of the text on mobile.

Something like this:

@media screen and (max-width: 768px) {
      .main-title {
            font-size: 30px;
      }
}

Adjust the pixels as needed.

Let me know 🙂