Tom
Tom

Reputation: 95

Why is my Bootstrap fixed top navbar so small on mobile?

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

Answers (1)

Alejo Anibal
Alejo Anibal

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

Related Questions