Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying pretty hard to make simple form page viewable in mobile devices. The form is viewable, just that I have to zoom in a lot to read it.

Hear is an example:

http://200.5.3.20/temp/PocketPC/dispatch.php

share|improve this question

2 Answers

You can add the meta viewport tag that will scale the page to the device width

<meta name="viewport" content="width=device-width, initial-scale=1.0">

you can read up on it here too

share|improve this answer

use mobile doctype

<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
share|improve this answer
1  
WAP? We have CSS3 and HTML5 and you're suggesting WAP? – James Nov 7 '11 at 15:41
1  
It is NOT WAP, XHTML Mobile – nLL Nov 9 '11 at 8:54
This isn't WAP. It's a standard mobile dtd. ESPN uses it, for example. – adb12 Feb 13 at 16:33
even facebook uses it. m.facebook.com – keithics Mar 20 at 6:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.