Closed ghost closed 11 years ago
Hmm. Sounds weird. I haven't seen such behavior before. Does the example work correctly for you?
Any updates on this issue?
This what I ended up writing which worked. I can't remember how it fixed my original problem, but it did. Thanks for following up.
if ($(window).width() >= 768) {
$('#iso-container').isotope({
layoutMode: 'perfectMasonry',
perfectMasonry:
{
columnWidth: 210
}
});
}
else {
$('#iso-container').isotope({
layoutMode: 'straightDown'
});
}
k. Well, I'll close the issue then :) Let me know if you find out why that happened to you.
For some reason this plugin displays everything in a single column until the screen is resized and then it acts correctly. Additionally, it will occasionally display everything correctly, but some elements will overlap until the screen is resized. Any ideas on this problem?