How do I make <divs> in Twitter bootstrap appear in a Masonry Format with Jquery Masonry and Twitter Bootstrap?
jquery, jquery-masonry, twitter-bootstrap
Solution
As always, Google is your best friend, mate or sugardaddy.
Problem
I am trying to get each on the following page: http://snowbird.camorada.com/test.php to look in a masonry format like the following: http://masonry.desandro.com/demos/basic-single-column.html Here is the div that I want to appear in masonry format: ``` <div class="tiled"> <div class="newz_caption" style="background: #FFFFFF;"> //content </div> </div> ``` Here is the code that I am using to select the , (Sorry for the comments) ``` <script> $(function(){ $('#container').masonry({ // options itemSelector : '.tiled', isAnimated: !Modernizr.csstransitions }); }); </script> ```