Viewing 1 replies (of 1 total)
  • Usually misplaced masonry bricks are due to assigning positions before images are loaded–then when the images finally appear, they occupy more space than masonry accounted for.

    Just make sure the images within your $container are loaded before calling masonry:

    $container.imagesLoaded( function(){
    	$container.masonry({
    		// etc...
    		}
    	});
    });
Viewing 1 replies (of 1 total)

The topic ‘Problem with Gridly’ is closed to new replies.