Is there a way to let all devices show only the desktop mode?

Hi, guys. There is a site that i don’t have time yet to make it responsive for all devices, so is there a way that i can just let all the devices show only the desktop mode instead ?

You could delete the breakpoints from the css manually by deleting everything underneith the @media related css.

Or you could make some overwrite css, by writing this in custom code:

$(document).ready(function(){
   $('meta[name="viewport"]').prop('content', 'width=1440');
});

Where 1440 is your desired width. See source.

One last thing I could think off is to make the breakpoints so small, it cannot resize by adding something like this:

@media all and (max-width: 1px) { 

But i’m not sure if that will/can work with WF custom code.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.