Force all mobile devices to use the tablet mode

backoffice11
2 Posts
backoffice11 posted this 07 December 2023
Ask a Question

Is there a way I can disable the phone view for the website? Telling my phone to render it in desktop mode results in a great looking page, that looks much like the tablet mode.
Can I force all mobile devices to render the tablet mode?
The phone mode just looks horrible, makes a super long page that doesn't render correctly, and will take many hours to clean up.

Is there a way I can disable the phone view for the website? Telling my phone to render it in desktop mode results in a great looking page, that looks much like the tablet mode. Can I force all mobile devices to render the tablet mode? The phone mode just looks horrible, makes a super long page that doesn't render correctly, and will take many hours to clean up.
Vote to pay developers attention to this features or issue.
2 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 07 December 2023

Hello Christopher,

Thanks for contacting us!

It is impossible to do this directly on Nicepage, you cannot turn off the mobile view. However, try using CSS:

@media screen and (max-width: 576px) {
body {
display: none !important;
}
}

...................................................
Sincerely,
George.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hello Christopher, Thanks for contacting us! It is impossible to do this directly on Nicepage, you cannot turn off the mobile view. However, try using CSS: @media screen and (max-width: 576px) { body { display: none !important; } } ................................................... Sincerely, George. Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
xvemanuelvx
362 Posts
xvemanuelvx posted this 07 December 2023

I have a CSS code for you that should work. Add it in the site settings.

@media screen and (max-width: 600px) {
    body {
        zoom: 0.7;
    }
}

You may need to change the Max-Width and Zoom in my code to perfect it.

I have a CSS code for you that should work. Add it in the site settings. @media screen and (max-width: 600px) { body { zoom: 0.7; } } You may need to change the Max-Width and Zoom in my code to perfect it.

Last edited 07 December 2023 by xvemanuelvx

You must log in or register to leave comments