Responsive design doesn't display correctly on iphone -


this first responsive site. regular site client wants fit on iphones, ipads, etc.

i created of media queries , checked them using ff web dev toolbar's view responsive layouts. looks uploaded test server , shows regular site view small.

there must small i'm missing can't figure out.

http://lovetro.com/dwi-rochester/

you're missing viewport <meta> tag, tells iphone size should display page at. thus, think it's gotten desktop site @ 960px , displays such.

add <head>:

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

Comments