Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap responsiveness on mobile

i have this weird problem. I have just set up a page, built with bootstrap 3.0.3, on my own web server.

My problem is the responsive part, it works fine in chrome and firefox and even on my mobile when i put up a public link via dropbox. But when i try to access it from my web server using my mobile, samsung galaxy s3, it stops to work. I get the whole page instead of being shrunk to the mobile version.

I have included the view port:

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

When running a test on googles page speed page i get an error stating the viewport doesn't exist.

My webserver is running on a raspberry pi with nginx.

like image 927
j0llan Avatar asked May 25 '26 11:05

j0llan


1 Answers

Finally! from Responsive website zoomed out to full width on mobile:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
like image 85
rurabe Avatar answered May 27 '26 23:05

rurabe