
It would be more convenient, IMO, to make the width of the car. It significantly reduces the size, and the sensitive table will fire at the break point of 767px (by default).
Add .table-modal class to modal
<div class="modal fade table-modal" id="competitor_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
Add CSS:
.table-modal .modal-dialog {width:auto;max-width:1000px;} .table-modal {padding-left:5%;padding-right:5%;}
And remove .row and col - * - 12 and the fluid container inside the modal body, this is not necessary. An overlay on a modal body will work just fine.
source share