From c7091044184c08256da5bcd768724e7fa13b0244 Mon Sep 17 00:00:00 2001 From: Brett Goulder Date: Wed, 20 Jun 2012 19:16:30 -0600 Subject: [PATCH] Just do the media query for the iPhone 4, not retina macbook --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index b58941cd..962dd34a 100644 --- a/index.html +++ b/index.html @@ -198,9 +198,9 @@ img.example_image { margin: 0px auto; } - @media only screen and (-webkit-min-device-pixel-ratio: 1.5), - only screen and (-o-min-device-pixel-ratio: 3/2), - only screen and (min-device-pixel-ratio: 1.5) { + @media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 640px), + only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 640px), + only screen and (min-device-pixel-ratio: 1.5) and (max-width: 640px) { img { max-width: 290px; }