XF 2.1 Logo to small

Abraham54

Well-known member
Theme: Royal from Doh, adjusted.

The problem, I can't make the logo bigger, there seems to be a limitation - when I make the logo bigger, it is pushed downwards.

Screenshot_2019-11-19 PiepComp Support - dat andere PC-Helpforum Small Logo.webp
 
I know now why happened what I described.
Finding the normal header to big, I put in a height restriction.
Without this restriction, the logo is really big.
 
I used this css in the extra.less to fix it on mobile devices. May not work with your layout.

CSS:
.p-nav-smallLogo
{
    display: none !important;
}
.p-header-logo
{
    max-width: none !important;
}
.has-js .p-header
{
    display: block;
}
 
Back
Top Bottom