-3

i have tried numerous times to fix this grid layout but currently when there is a large amount of text in the #place_quo div it seems to mess everything up.

here is my link

Demo

i am using masonry.js to grid align everything and wondering if thats the problem. i can't seem to get a proper margin-bottom to work effectively the div contact div and summary div connect by accident.

Gopal Joshi
  • 2,284
  • 19
  • 47
user3206729
  • 163
  • 10
  • There is an issue with your html. You have multiple div of same id "divbox". And there is no element with id "text_quo" First correct them. – K K May 03 '14 at 07:07
  • i meant place_quo, why does it matter if the boxes are same id – user3206729 May 03 '14 at 07:15
  • 1
    HTML cannot have multiple elements with same ID.It's invalid. Id should be unique. Instead of giving ID to them, use classes. Classes can me same but not the ID. – K K May 03 '14 at 07:17

1 Answers1

0

it was a masonry issue, had to use $("#container").masonry('destroy'); and then $("#container").masonry();

user3206729
  • 163
  • 10