16

I am using Bootstrap 3.0 dist and I am following some Bootstrap tutorial now, trying to learn how it works. I did everything exactly as in the tutorial (it is for v2, so I changed the classes to v3) and I do not use any custom CSS or anything and in the tutorial the images resize when you simply resize the window, but in mine it stays same and wrecks everything. Also according to the tutorial images should stay centered inside the boxes (the 3 images).

madth3
  • 7,275
  • 12
  • 50
  • 74
user13176
  • 303
  • 1
  • 4
  • 10

2 Answers2

34

In bootstrap 3 Images are no longer responsive by default. Use .img-responsive for fluid size.

Doc:http://getbootstrap.com/getting-started/#migration-dropped

ashwinm
  • 636
  • 6
  • 14
15

Have you tried adding class="img-responsive" to the problematic images?

Enlico
  • 23,259
  • 6
  • 48
  • 102
CeeGee
  • 416
  • 1
  • 4
  • 13
  • As I understand it v3 doesn't automatically resize - you have to explicitly tag images you want to be responsive. If you want all images to be responsive, maybe read this past question's answers: http://stackoverflow.com/questions/17932509/images-not-responsive-by-default-in-twitter-bootstrap-3 – CeeGee Sep 12 '13 at 14:36