Reply To: Mobile view

Home Forums Support Mobile view Reply To: Mobile view

Home Forums Support Mobile view Reply To: Mobile view

#89854
Tom
Lead Developer
Lead Developer

You can always use media queries to target elements at certain widgets.

For example, you can decrease the font size of your header when the screen size hits 500px.

@media all and (max-width: 500px) {
      .main-title {
            font-size: 25px;
      }
}