So I have 2 phones an Android Nexus One and a cheap simple Android device I bought for like $100 retail.
I am trying to make my website mobile device friendly using @media and CSS (I am actually using stylus and Node.JS so the code may look a bit funny).
So I added the following to my style
//trial 1
@media (max-width:480px)
display none
//Trial 2
@media (resolution: 163dpi)
display none
//Trial 3
@media (-webkit-device-pixel-ratio:0.75)
display none
//Trial 4
@media screen and (max-width:480px)
display none
At first I thought my screen was just super high res, but none of these help the less expensive device either. Everything seems to work fine in my browser so I am stumped.
Thanks!
Try adding this
metatag to the<head>of your html: