I have a media section in http://androdevlab.com/style.css that should apply to http://androdevlab.com when view in a mobile browser.
Specifically, the logo and the main title font should get a lot smaller, but they do not.
Wondering why?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your media query tests
(max-width: 780px), which does not match many android phones, which usually report 800. Either change the media query toor use
max-device-width.Alternatively, you can add the HTML element
to advise the mobile browser to use the actual resolution.