Reply To: Make Mobile Menu Logo Different Image Than Desktop Menu Logo

Home Forums Support Make Mobile Menu Logo Different Image Than Desktop Menu Logo Reply To: Make Mobile Menu Logo Different Image Than Desktop Menu Logo

Home Forums Support Make Mobile Menu Logo Different Image Than Desktop Menu Logo Reply To: Make Mobile Menu Logo Different Image Than Desktop Menu Logo

#229191
Tom
Lead Developer
Lead Developer

You’ll need to reduce the width of your image at whatever breakpoint is necessary.

For example:

@media (max-width:500px) {
    .main-navigation .sticky-logo, 
    .main-navigation .sticky-logo img {
        width: 80px;
        height: auto;
        margin-top: 7px;
    }
}