When I view my Web page with masonry installed, the images overlap each other instead of displaying on top of each other. I can't post the HTML because it's too long but I can post the link to my Web site: http://204.232.239.137/shop-kitchen.html
When I view my Web page with masonry installed, the images overlap each other instead of displaying on top of each other. I can't post the HTML because it's too long but I can post the link to my Web site: http://204.232.239.137/shop-kitchen.html
Last edited by jscheuer1; 02-01-2016 at 04:31 PM. Reason: format
I fixed it with this:
Code:<script> var $container = $('.grid'); $container.imagesLoaded(function(){ $container.masonry({ itemSelector: '.isotope-item', animate: true, columnWidth: 220, isFitWidth: true, gutterWidth: 12 }); }); </script>
Bookmarks