Are you in need of a title, subtitle, and two boxes aligned closely together in the final third div?
Having trouble getting 2 buttons to align center next to each other? It looks fine at certain widths but flows onto the next line at full width.
<div class="button-box">
<div class="myoffer3 col-lg-6">
<a href="mylink.php" class="btn btn-info" role="button">About Us</a>
</div>
<div class="myoffer4 col-lg-6">
<a href="mylink.php" class="btn btn-info" role="button">Our Products</a>
</div>
</div>
My CSS
.myoffer3 {
display: inline;
padding:20px;
}
.myoffer4 {
display: inline;
padding: 0 20px;
}
.button-box {
width:100%;
text-align:center;
}