You can reach the center of vertical alignment on Bootstrap 3 like this:
.modal-vertical-centered { transform: translate(0, 50%) !important; -ms-transform: translate(0, 50%) !important; -webkit-transform: translate(0, 50%) !important; }
and add this css class to the modal dialog container
<div class="modal-dialog modal-vertical-centered"> ...
jsFiddle working example: http://jsfiddle.net/U4NRx/
Egurelli
source share