XF 2.2 Logo on mobile

Seeker-Smith

Well-known member
Licensed customer
My logo appears normal on desktop but on mobile it’s really tiny. Is there a style setting for this?
 
Add this to your extra.less template


CSS:
// ########################### FULL SIZE LOGO ON MOBILE ########################
.p-nav-smallLogo {
    display: none !important;
}
.p-header-logo {
    max-width: none !important;
}
.has-js .p-header {
    display: block;
}
 
Add this to your extra.less template


CSS:
// ########################### FULL SIZE LOGO ON MOBILE ########################
.p-nav-smallLogo {
    display: none !important;
}
.p-header-logo {
    max-width: none !important;
}
.has-js .p-header {
    display: block;
}
I used this but my logo disappeared
 
Back
Top Bottom