I use JQuery Packery which works fine.
The question that occurs to me is how can I center the item container on my page?
<div id="container">
<div class="item">...</div>
<div class="item w2">...</div>
<div class="item">...</div>
...
</div>
I tried css:
#container {
marin: 0 auto;
}
but this does not work.
have a look at this.. this does what you need..
http://codepen.io/anon/pen/Dbpzu
DeSandro already has an example of a centered packery layout.
The example is here.
Basically it is just centered via CSS. I'm copying the code here too:
HTML:
CSS: