Masonry.js, issue with collection sorting order

Hey Chiara,

Maybe adding horizontalOrder: true inside of your masonry custom code would fix it?

So like this:

$(window).on("load", function() {
	$('.masonry').masonry({
    itemSelector: '.masonry-item',
    horizontalOrder: true
  });
});
2 Likes