Reputation: 347
I have some issues with the responsive on bootstrap.
The desktop view is perfect, and it is the look I want it to be
But more I reduce the window, more the style is breaking
At the end on smartphone view, it's perfect. I really don't know what to do :/
Here the code : http://jsbin.com/egudor/6/edit
Upvotes: 1
Views: 81
Reputation: 22170
You need to remove the float: left
attribute you put on .thumbnail h3
(line 33 of edit.css) and the margin-top: 40px
of .thumbnail p
Works for me : http://jsbin.com/egudor/11/edit
Upvotes: 3