XF 2.2 hiding logo doesn't always work

toby88

Member
I want to hide the logo headers always for all users (phone and computer). I put the following in extra.less
Code:
.p-header-logo
{
    display: none;
}

It works only when the width of the browser window is bigger than its height on both phones and computers. On the phone, the logo still shows in portrait mode and hidden in landscape mode.
 
I want to get rid of the header and logo (the circled part in the attached image) on both mobiles and computers.

I've tried both of the following in extra.less and they both work on computers only, but failed on mobile devices. Could someone kindly show me how, please?

TIA

Code:
.p-header,
.p-nav-smallLogo
{
    display: none;
}
Code:
.p-header
{
    display: none;
}
 

Attachments

  • how hide mobil header logo.webp
    how hide mobil header logo.webp
    17.8 KB · Views: 11
Top Bottom