Reputation: 1779
when this page is displayed in a mobile browser, its not scaling and its cut. Its was not supposed to be a responsive website, but at least the user should be able to zoom it in a mobile browser. I tried to configure the meta viewport, but nothing seams wrong. What should I do?
http://www.milu.jp/lp/kjcouple.php
<meta name="viewport" content="width=device-width, initial-scale=1">
Upvotes: 0
Views: 1688
Reputation: 1779
I just found another solution reading this article:
How can I force a site to scale to fix for mobile (Iphone android..)
"It seemed like you should ignore most of the viewport properties and just set user-scalable to "yes". It's working on my iphone now."
<meta name="viewport" content="user-scalable = yes">
Upvotes: 1
Reputation: 11
I have edited the div's name below. Please check
Go through this article - http://www.w3schools.com/css/css_rwd_mediaqueries.asp
You have to edit the following
div class="twc" - Make its width: auto
div class="tweet" - Make its width: auto / left: -25px;
Hope it helps.
Upvotes: 1