Last active
January 3, 2016 07:19
-
-
Save lnickers2004/8428524 to your computer and use it in GitHub Desktop.
CENTERING MODAL METHOD1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.modal-dialog-center { | |
margin-top: 25%; | |
} | |
</style> | |
<div id="waitForm" class="modal"> | |
<div class="modal-dialog modal-dialog-center"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
<h4 id="headerBlock" class="modal-title"></h4> | |
</div> | |
<div class="modal-body"> | |
<span id="bodyBlock"></span> | |
<br/> | |
<p style="text-align: center"> | |
<img src="@Url.Content("~/Content/images/progress-loader.gif")" alt="progress"/> | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment