The modal-header contains the <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> tag to close the modal, but the modal-body has a padding that cuts off the bottom of the X and render it unavailable to click on.
.modal .modal-body {
padding: 20px;
}
needs to be changed to
.modal .modal-body {
margin-top: 20px;
padding: 0 20px 20px 20px;
}
The
modal-header
contains the<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
tag to close the modal, but themodal-body
has a padding that cuts off the bottom of the X and render it unavailable to click on.needs to be changed to