Reply To: Mobile view

Home Forums Support Mobile view Reply To: Mobile view

Home Forums Support Mobile view Reply To: Mobile view

#90073
Tom
Lead Developer
Lead Developer

Hmm.. You could try this:

@media all and (max-width: 500px) {
      .site-branding {
            max-width: 80%;
      }
}

Or you could hide it:

@media all and (max-width: 500px) {
      .site-logo {
            display: none;
      }
}