I'm making a template that is adaptable for mobile in landscape and portrait mode, i have to "remove" some objects because there is no space in landscape, then I used display:none in the landscape, and set the normal dimensions for portrait, but when I go into the phone, and make the switch landscape to portrait the objects disappear even in portrait mode...
more or less the css structure is this:
@media screen (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) and (device-width: 1080px) and (orientation: portrait) {.object {width: ...; height: ...; top: ...; margin-left: - ...;}}
@media screen (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) and (device-width: 1920px) and (orientation: landscape) {.object {display:none}}
any advice? :)