Is there a way to align buttons on a modal side by side? One button is a download link and the other a mirror link. I attempted to use a custom class with CSS property "display: inline-block;" but it did not work as expected. Any suggestions on how to achieve this side by side alignment?
Here is the code for the modal:
<!-- Texturepack Popup Start -->
<div class = "modal fade" id = "texturepack" role = "dialog">
<div class = "modal-dialog">
<div class = "modal-content">
<div class = "modal-header">
<h4>Texture Pack Download</h4>
</div>
<div class = "modal-body">
<center><h3>Download our Custom Texture Pack!</h3></center>
<p class = "tpbutton btn-toolbar">
<a style = "margin: 0 200px; display: inline-block" class = "btn navbar-btn btn-primary pull-center" href = "#" target = "_texturepack">Download</a>
<a style = "margin: 0 300px; display: inline-block" class = "btn navbar-btn btn-default pull-center" href = "#" target = "_texturepack">Mirror</a>
</p>
<!-- Carousel Text Start -->
<div style = "height:15px"></div>
<div style = "border: 2px solid black; width: 500px; margin: 0 auto" id = "textureCarousel" class = "carousel slide">
<ol class = "carousel-indicators" data-ride = "carousel">
<li data-target = "#textureCarousel" data-slide-to = "0" class = "active"></li>
<li data-target = "#textureCarousel" data-slide-to = "1"></li>
<li data-target = "#textureCarousel" data-slide-to = "2"></li>
</ol>
<div class = "carousel-inner">
<div class = "item active">
<img src = "img/a.png" alt = "Beach" class = "img-responsive">
</div>
<div class = "item">
<img src = "img/b.png" alt = "Beach" class = "img-responsive">
</div>
<div class = "item">
<img src = "img/c.png" alt = "Beach" class = "img-responsive">
</div>
</div>
</div>
<!-- Carousel End -->
</div>
<div class = "modal-footer">
<a class = "btn btn-danger" data-dismiss = "modal">Close</a>
</div>
</div>
</div>
</div>
<!-- Texturepack Popup End -->