Background banner appearing on smartphones

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