Reply To: Logo Height in Header

Home Forums Support Logo Height in Header Reply To: Logo Height in Header

Home Forums Support Logo Height in Header Reply To: Logo Height in Header

#198298
Tom
Lead Developer
Lead Developer

Hmm, doing it that way wouldn’t be very mobile friendly.

One option is to increase the height of the logo on mobile like this:

@media (max-width: 768px) {
    .header-image {
        height: 100px;
    }
}

Let me know if you need more info 🙂