I had this problem and it turned out to be that I was missing the <div> with a class of "modal-content". I had something like this:
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-body">
Here is my body
</div>
</div>
</div>
It should have been like this:
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
Here is my body
</div>
</div>
</div>
</div>