Masonry style guide

If you are using masonry style homepage, go ahead & read this.

For masonry, we are using jQuery maronry plugin. This plugin can be activate in simple way. See a sample-code below.

<div class="masonry-active-class">
    <div class="single-maronry-item"></div>
    <div class="single-maronry-item"></div>
    <div class="single-maronry-item"></div>
</div>

This is a simple way. Because we are using bootstrap grid, we are using this way. You can add as many as post box you want.

<div class="row masonry-posts-box">
    <div class="col-md-6">
        <!-- Single post item content -->
    </div>

    <div class="col-md-6">
        <!-- Single post item content -->
    </div>    
</div>

So, our masonry activae class is: masonry-posts-box