Setox
Elite Member
- Apr 30, 2015
- 2,430
- 4,673
Hi, guys
Anyone here experienced with Bootstrap framework, I want to add space between two columns "col-md-6" when they collapsed .
I tried using margins but as obvious it appears in Normal view too !
Here is the code i'm using :
Anyone here experienced with Bootstrap framework, I want to add space between two columns "col-md-6" when they collapsed .
I tried using margins but as obvious it appears in Normal view too !
Here is the code i'm using :
HTML:
<!--------START FIRST COLUMN--------->
<div class="col-md-6">
<div class="media">
<div class="media-left">
<img class="media-object" src="dada.png" width="75" height="80">
</div>
<div class="media-body">
<h4 class="media-heading">made 25£ OFF</h4>
<p>Coopleer vor fanz dertok</p>
<button class="btn btn-sm btn-danger">Download</button>
</div>
</div>
</div>
<!-------START SECOND COLUMN-------->
<div class="col-md-6">
<div class="media">
<div class="media-left">
<img class="media-object" src="zaza.png" width="75" height="80">
</div>
<div class="media-body">
<h4 class="media-heading">rocko 25£ OFF</h4>
<p>Coopleer kaleer em</p>
<button class="btn btn-sm btn-danger">Download</button>
</div>
</div>
</div>
<!-----END SECOND COULUMN------>