jquery-plugin Masonry: I cannot make it work
- by Patrick
hi,
I'm using Masonry library (http://desandro.com/resources/jquery-masonry/) to create columns from my content.
I cannot make it work.. this is the url with the html code:
http://donatellabernardi.ch/drupal/
And this is my javascript line:
$('#content-area').masonry({ columnWidth: 50, itemSelector:'.views-row'});
The Masonry function is invoked, but it doesn't add any column...
I've also tried:
$('#content-area').masonry({ columnWidth: 50, itemSelector:'.node'});
$('#content-area').masonry({ columnWidth: 50 });
$('div.view-content').masonry({ columnWidth: 50 });
What am I doing wrong ?
Thanks