Reputation: 1
I'm using bootstrap to make a web site. On the browse everything is ok, but on the mobile(Iphone 5c) the carousel grows and shrinks. I tryed to fix the size of the carousel on many sizes like 320px, 480px, etc and add .img-responsive class.
Upvotes: 0
Views: 32
Reputation: 638
Did you set <meta name="viewport" content="width=device-width, initial-scale=1">
inside of the <head>
tag in your html?
You need to do the pevious to ensure proper zooming on mobile devices.
Upvotes: 1