Robbie Dc
Robbie Dc

Reputation: 701

Gaps in the Grid layout

Here is a test page of my site: http://hookpost.com/test/index.php#news

The problem is with the alignment of article boxes. I am using bootstrap for the grid layout. There are lot of unnecessary gaps while scrolling down. I am not able to understand exactly what part of CSS I am doing it wrong.

Upvotes: 0

Views: 62

Answers (1)

anjan.com.np
anjan.com.np

Reputation: 136

You are using bootstrap2.2.

Use in this format,

<div class="row">
 <div class="span4"><div>
 <div class="span4"><div>
 <div class="span4"><div>
</div>

<div class="row">
 <div class="span4"><div>
 <div class="span4"><div>
 <div class="span4"><div>
</div>

<div class="row">
 <div class="span4"><div>
 <div class="span4"><div>
 <div class="span4"><div>
</div>

It works.

Upvotes: 1

Related Questions