Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to build a horizontal version of JQuery Masonry using JQuery Isotope. I want my result to look something like this:

Layout-modes (CLICK THE masonryHorizontal OPTION).

As per the sites instructions: Masonry Horizontal my script looks like:

$('#isotopecontainer').isotope({
        itemSelector : '.item',
        masonry : {
          columnWidth : 270
        }
 });

However, 2 things are happening:

1) when the page loads the height of the #isotopecontainer div is set at 60px so you only see the tops of the .item divs.

2) if you resize the browser the #isotopecontainer div expands but the .item divs do not line up like the example.

Can anyone help point me in the right direction at all? My demo site is here.

Thanks.

share|improve this question

2 Answers

You're demo site is working in Firefox.

Although, you're right, in Chrome it's not. The problem is fairly simple. You need to set width and height attributes on your images. Or else, Chrome load them as 0px height (which made container with default height of line-height value) until they get the file. Firefox isn't acting this way and waits for knowing the images size before creating the layout.

Hope this help!

share|improve this answer
Thanks, you are correct but the annoying thing is it breaks the plugin - images dont space out correctly – MeltingDog Nov 5 '12 at 1:22
Unfortunately, no-one can know the size of the images before they're loaded. And unfortunately, chrome will start laying out your page before. So, you setup the size manually, or you call relayout method on isotope each time an image load (onload event)... – Simon Boudrias Nov 5 '12 at 1:42

#isotophecontainer has overflow: hidden. Removing this shows all of the images for me in Chrome.

share|improve this answer
thanks but the plugin code seems to add that for a reason – MeltingDog Nov 5 '12 at 1:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.