Reputation: 95
Context: http://tomtam.net
Example: http://getbootstrap.com/examples/navbar-fixed-top/
My navbar is tiny mobile. Also how can I center the image ? Thank you
Upvotes: 7
Views: 3441
Reputation: 371
You're missing viewport meta tag:
<meta name="viewport" content="width=device-width, initial-scale=1">
Place it before <title>
tag.
Also, you should place your "row" div inside a div with "container" class.
Upvotes: 20