XF 2.2 Bigger logo on mobile

Solution
CSS:
@media screen and (max-width: 768px) {

    .p-nav-smallLogo {
        max-width: 200px !important;
        }
    
    .p-nav-smallLogo img {
        max-height: 100px !important;
    }
}

That's what did it for me. Feel free to assume there's a better way but this is what I did and works just fine.
CSS:
@media screen and (max-width: 768px) {

    .p-nav-smallLogo {
        max-width: 200px !important;
        }
    
    .p-nav-smallLogo img {
        max-height: 100px !important;
    }
}

That's what did it for me. Feel free to assume there's a better way but this is what I did and works just fine.
 
Solution
CSS:
@media screen and (max-width: 768px) {

    .p-nav-smallLogo {
        max-width: 200px !important;
        }
   
    .p-nav-smallLogo img {
        max-height: 100px !important;
    }
}

That's what did it for me. Feel free to assume there's a better way but this is what I did and works just fine.
Thanks after many hours trying to fix the mobile logo fixed "height" default, i found your post and fixed my issue.
Xenforo have to check this and implemented by default i think,

Regards
 
having same issue, where did you paste the css code? i guess i figured that "set height and width" setting on the logo options was intended for this but its just SUPER tiny on mobile now.

edit...found this...didnt realize it needed to go in extra.css thanks to the forum for the fix!

 
Last edited:
Back
Top Bottom