I'm struggling to align a button with text inside of a well.
Here is what I currently have:
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="well"><h4>Download our 2016 Registration form today!<button type="btn" class="btn btn-default centered">Download Now!</button></h4>
</div>
</div>
</div>
</div>
CSS on the button:
.btn {
background-color: #FFF;
outline-color: #000;
}
Despite my efforts, I can't seem to create space between the h4 and the button. They appear too close together, and adjusting padding and margin does not solve the issue.
Previously, I attempted placing the h4 and button in separate columns, but I couldn't get them to align properly horizontally.
After researching some posts on github https://github.com/twbs/bootstrap/issues/16933 .... https://github.com/twbs/bootstrap/issues/1446, it seems like this problem has been persistent for a while.
I chose to use a well because I want the h4 and button to be closely positioned within a red border to grab attention.
Any suggestions?