I have an issue with overlapping in Masonry that I've discovered is caused by Google Fonts loading after the Masonry script. I've added the following code to fix this, but now Masonry doesn't work. Actually, it looks like Masonry is working for a split second and then suddenly stops working.
$(document).ready(function () {
WebFont.load({
google: {
families: ['Chivo']
}
});
WebFontConfig = {
active: function() {
$('#archive').masonry({
itemSelector : '.item',
columnWidth: 350,
gutterWidth: 20
});
}
};
});