This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by lorenzo001
over 8 years

Add a second <div class="thumbnail">..</div>/ I cannot find my mistake :/

Answer 55ffcbfcd3292f415b000733

-1 votes

Permalink

Hi,

you have not closed the first col-md-4 correctly, if you add a above the 2nd col-md-4 it will fix that part,

you then need to make sure there is 2 images in the first 2 col-md-4 and 1 image in the 3rd col-md-4

I have written out a template for you to check (try and correct your version but if you get stuck copy and paste that in)

http://jsfiddle.net/awymhrgx/2/

Thanks

points
Submitted by Keith Light
over 8 years

2 comments

lorenzo001 over 8 years

THANK YOU VERY MUCH its help me a lot

Duy Dinh over 8 years

but not me:p

Answer 5602669d51b88750da0001b0

-2 votes

Permalink

<div class="row">
  <div class="col-md-4">
    ...
  </div>

  <div class="col-md-4">
    <div class="thumbnail">
      <img src="http://goo.gl/Av1pac" >
    </div>
    <div class="thumbnail">
      <img src="http://goo.gl/vw43v1">
    </div>
  </div>
points
Submitted by Duy Dinh
over 8 years

1 comments

Duy Dinh over 8 years

That is the solution