I have a site that has a mobile stylesheet:
I\'m also using jQue
Simple way to force landscape orientation is set your min-max width in your css code, try using this code
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
body {
-webkit-transform: rotate(90deg);
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}}
hope solve your problem.