Home Forums Support Menu logo Reply To: Menu logo

#227089
Tom
Lead Developer
Lead Developer

You might be able to do something like this:

@media (min-width: 769px) {
    .main-navigation .sticky-logo {
        position: absolute;
        top: -20px;
        left: 0;
        z-index: 500;
    }
    .main-navigation .sticky-logo, 
    .main-navigation .sticky-logo img {
        height: 200px;
    }
}

You’ll have to adjust the numbers, but that should get you close 🙂