XF 2.0 728x90 adv banner not showing on mobile

It's not really a bug, you picked an ad spot that disappears in mobile because the logo drops into the navigation.

You can add some CSS to your extra.less template which will bring that logo block BACK but hide the logo in mobile (not in the navigation).

Code:
@media (max-width: 650px)
{
    html .p-pageWrapper .p-header
    {
        display: block;
        .p-header-logo { display: none; }
    }
}

Should work.
 
Last edited:
It's not really a bug, you picked an ad spot that disappears in mobile because the logo drops into the navigation.

You can add some CSS to your extra.less template which will bring that logo block BACK but hide the logo in mobile (not in the navigation).

Code:
@media (max-width: 480px)
{
.has-js .p-pageWrapper.p-header
{
    display: block;
    .p-header-logo { display: none; }
}
}

Should work.

it does not work on mobile
 
Back
Top Bottom