Lack of interest Background banner appearing on smartphones

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.
This suggestion has been closed. Votes are no longer accepted.
This should do it, provided you just centered the large logo on the default style:
CSS:
@media (max-width: @xf-responsiveNarrow)
{
    .p-header {
        display: block !important;
    }
    /* Remove the large centered logo */
    .p-header-logo {
        visibility: hidden;
    }
}
 
This should do it, provided you just centered the large logo on the default style:
CSS:
@media (max-width: @xf-responsiveNarrow)
{
    .p-header {
        display: block !important;
    }
    /* Remove the large centered logo */
    .p-header-logo {
        visibility: hidden;
    }
}

before:
photo_2024-12-26_23-14-36.webp
AFTER

photo_2024-12-26_23-48-00.webp

It helped a lot.
Thanks a lot.
Frm:p:coffee:
 
Back
Top Bottom