I have a certain modal responsible for displaying some content of the site, however the content can not fit the modal screen, it always stays the same width regardless of the content ... how can increase the size of a modal?
code being used
<div class="modal fade " id="minhaModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<div id="conteudoModal"></div>
</div>
</div>
</div>
</div>