Website is not getting responsive with Bootstrap [closed]

0

I made a site using bootstrap, but it is not getting responsive on the phone, it simply appears as if it were on a monitor and then with both horizontal and vertical scrollbar ...

link

This is the site. By the chrome browser, if the screen goes down to a size of a cell phone, the responsive is right, the manu becomes that button three lines and everything, so far so good, but by the way you click on F12 and goes in the inspect element and puts to see in the form of mobile or accesses from a mobile does not happen the adaptation of the content.

Can anyone give a help? I have already changed the CSS files, checked the media-queries (@media ()) and are correct the same as several other sites I made and I used the bootstrap tbm!

    
asked by anonymous 12.04.2016 / 17:49

2 answers

4

You need to add the following line to the head of the site:

<meta name="viewport" content="width=device-width, initial-scale=1.0">
    
12.04.2016 / 17:56
2

You need to specify the viewport meta tag:

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

template

    
12.04.2016 / 17:55