In adaptivetheme\templates\html.tpl.php on line 8 you have:

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

This is a misuse of the semicolon between device-width and scale, and you should instead use a comma. When you use a semicolon here WebKit browsers will throw an error like "Viewport argument value "device-width;initial-scale" for key "width" not recognized. Content ignored."

Instead, use:

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

On a related note, it is absolutely acceptable to swap "1.0" for "1" so that the meta tag might read:

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

CommentFileSizeAuthor
#2 1292710-meta-comma-1.patch1.11 KBrupl
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jonathantneal’s picture

Issue summary: View changes

Correct a comma I put in the wrong place...

Jeff Burnz’s picture

Awesome spotting, I found some docs on it here also: http://developer.apple.com/library/safari/#documentation/appleapplicatio...

rupl’s picture

Status: Active » Needs review
FileSize
1.11 KB

Patch updates html.tpl.php <meta> attribute to use comma instead of semicolon.

Jeff Burnz’s picture

Status: Needs review » Fixed

lol, I already committed the fix to dev http://drupal.org/commitlog/commit/10872/67fa8a7a77dc7ac25da01852c1ad145...

thanks for the patch though, awesome to be getting some help :)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

Only after I post something do I discover a better way to phrase a point.