user217648
user217648

Reputation: 3486

Internet Explorer 10 in Nokia windows phone not responsive

I have used Twitter bootstrap to make my web site responsive. everything works great but IE 10 in Nokia (Lumia 920) windows phone. I searched alot and everybody says if I add @media(max-width:480px){@-ms-viewport{width:320px;} ...} it would solve the problem but the problem still remains. It is not only for my site, but also all other sites. IE 10 in windows phone is not responsive at all. any idea thanks.

Upvotes: 4

Views: 6525

Answers (2)

tgondar
tgondar

Reputation: 184

I had the same problem, I fixed it using this meta tags:

<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

better explained in here: http://getbootstrap.com/getting-started/#template

cheers.

Upvotes: 0

Stuart Robson
Stuart Robson

Reputation: 1149

Have you seen this post from Trent Walton? Wherein he talks about media queries and IE10 in WP8 - http://trentwalton.com/2013/01/16/windows-phone-8-viewport-fix/

Upvotes: 4

Related Questions