Hello, I would like to know if it is possible to disable the responsiveness of a jquery site without changing the codes, for example forcing the desktop version on mobile devices!
Thank you!
Hello, I would like to know if it is possible to disable the responsiveness of a jquery site without changing the codes, for example forcing the desktop version on mobile devices!
Thank you!
Responsiveness is one thing and adaptive is another, you have to be sure what you are using, in the case of responsiveness you can not without touching any part of the code, you can for example adjust the width of <body>
, add something like:
<style>
body {
min-width: 1024px !important; /* força largura minima de 1024px*/
}
</style>
In this way you do not have to touch anything of the code, just add or remove this element.
Some responsive effects work through the view-port size and not the <body>
element, but for most frameworks like (bootstrap2 and 3) almost everything is based on the width of the element "parent" where the elements with class col-
for example .
If the site is adaptive the only way is to determine what leads it to render alternative HTML and CSS.
Man, I think it will depend a lot on how you are developing your CSS. Look for CSS3 @media Rule. You can apply style only when it is a desktop, printer, projector, cell phone, etc. And it also has style by screen size. In case, you would apply style only when the user screen is larger or smaller than a certain size (you specify in @media).