Posted on: 2/26/2015 4:52:24 PM | Views : 588

Hi folks, I’m trying to set the layout of my page, basically looking for 1 row with 3 columns;
First column will hold the search criteria. Second column will hold the GridView. Third column will hold some additional information. The first column with the search criteria is ok but the GridView seems to be millions away from the first column.
I have the code like so;
<div class="row"> <div class="col-md-3"> (search criteria) </div> <div class="col-md-7"> (GridView) </div> <div class="col-md-2">( additional information) </div> </div> This is what I’m getting diagram below   
 
First column          & ...

Go to the complete details ...