Hi machine, welcome to the site, there really isnt a community, just me trying to answer questions x.x
So you want the buttons to always be aligned, sounds pretty easy enough
Style:
Code:
.con_head{
margin:0;
width:100%;
height:45px;
text-align: center;
background-color:#999;
padding:8px 0px 0px 0px;
}
.con{
margin:0;
width:100%;
height:100px;
background-color:#e8e8e8;
text-align: center;
padding: 10px 10px 10px 10px;
}
.btn_styler{
width:100%;
height:45px;
border:0;
border-radius:0;
background-color:#FF8000;
}
script:
Code:
<div>
<div class="text-center">
<div class="row">
<div class="col-sm-3">
<h3 class="con_head">xxxxxxxxxxx</h3>
<h4 class="con">xxxxxxxxxxxxxx xxxxxxxxxx</h4>
<button type="button" class="btn btn_styler btn-lg">xx</button>
</div>
<div class="col-sm-3">
<h3 class="con_head">xxxxxxxxxxxxxxxx</h3>
<h4 class="con">xxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxx xxxxx xxxxx</h4>
<button type="button" class="btn btn_styler btn-lg">xx</button>
</div>
<div class="col-sm-3">
<h3 class="con_head">xxxx x</h3>
<h4 class="con">xx</h4>
<button type="button" class="btn btn_styler btn-lg">xx</button>
</div>
<div class="col-sm-3">
<h3 class="con_head">xxxxx</h3>
<h4 class="con">xx x</h4>
<button type="button" class="btn btn_styler btn-lg">xx</button>
</div>
</div>
</div>
</div>