Agent78

Customer
And also how do you remove the smaller version for mobile, and is it possible to stop mobile all together and just keep a desktop version on all devices?
 
Just to clarify, are you wanting to remove the header row so that essentially the navigation is at the top of the page or just the logo image itself and keep the header row?

All CSS goes inside of extra.less:

Remove header row:
Code:
header#header { display: none; }

Keep header row but hide logo:
Code:
header#header .p-header-logo { visibility: hidden; }

As for the desktop view always, you'd need to open PAGE_CONTAINER

Find:
Code:
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">

Replace with something like:
Code:
<meta name="viewport" content="width=1024">

But I'll be honest, neither of your questions truly makes sense to do. All sites should have a logo, if your header logo is included in the background image of the header than I'd say the proper fix is to separate those. Have the logo as it's own image, have the header background as another one.

As for forcing desktop, this is another thing in todays age no one really wants to be zooming in on a tiny device like the old days. Forcing full-width content and not adapting to responsive devices just doesn't make sense.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back