Having some trouble centering a <h4>
title within a bootstrap modal. Here is the code snippet:
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document" style="
margin-top: 40px">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title text-center">Request to be Called Back</h4>
</div>
<div class="modal-body">
[body.....]
</div>
</div>
</div>
</div>
It seems to work fine when tested on JSFiddle, but not within my actual project! I suspect there may be a conflict with the WordPress theme I am using, causing issues with Bootstrap, although I am not entirely certain.