Increase downloads

I am collecting responsiveness for my client (the site uses Bootstrap 2), but I have a problem. When I visit the site on my mobile device (HTC X8), I notice that it does not come very close to where it will look good.

Here is the link I'm using and the result on my phone: http://www.gigee.me/draft/index.php?/account/login ( if you just redirect the site gigee.me , enter the rest /draft/index.php?/account/login and it should work )


enter image description here


However, I want it to be increased. Just the same as it looks when you zoom out in the browser.

I think this could be a simple fix. I believe most of my HTML and CSS are correct.

I would really appreciate any help with this.

+4
1

. , , , / , - . , iPhone iPad 980 . , , Bootstrap 2 768px 980px, - , , , , .

- ( , ), , , .

HTML

<meta name = "viewport" id = "viewport_device">

JavaScript jQuery

    if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/Android/i)
    || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/IEMobile/i)){
        $("#viewport_device").attr("content", "initial-scale = 0.50");
    }
    else if(navigator.userAgent.match(/iPad/i)){
        $("#viewport_device").attr("content", "initial-scale = 1.00");
    }

IF . , ​​ 0.50. , , 50%. iPad , 1. , , .

+2

All Articles