Media Query advice for ipad 1
Here is my index page in question http://www.theremotedoctor.co.uk/index.html
On my ipad 3 the view is the same as the PC which is fine.
I also have an ipad 1 but the view is the same as on the iphone & think it should be the same as ipad 3 & PC,maybe the media querie would fix it ?
So i am looking to get the same view on the device
In the basic css file line 308 the original code was,
Code:
@media only screen and (min-width: 481px) {
I have tried the following to try & get the same view but no such luck.
Code:
@media only screen and (min-width: 481px) {
Code:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape)
Code:
@media screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 1)
This ipad 1 does not rotate the screen so Landscape is only applicable.
Can you advise any help please.