XF 2.3 logo size

Patronus

Member
Hi. I'm using a logo with an aspect ratio of approximately 4:1 and setting the desired height and width in the settings. Everything works fine on desktop. On mobile, it was small. I adjusted the size by setting the desired width in the app_nav.less template, in the .p-nav-smallLogo section, and everything is fine too.
But on mobile, for unregistered users, the logo still appears small. How can I fix this?
 
Add this to your extra.less template:

Code:
/* Keep logo responsive */
.p-nav-smallLogo
{
display: none !important;
}
.p-header-logo
{
max-width: none !important;
}
.has-js .p-header
{
display: block;
}
 
Back
Top Bottom