Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use bootstrap modal plugin. But modal dialog is not shown in center. Why? my mistake?

http://dl.dropbox.com/u/573972/stackoverflow/bootstrap/modal.html

<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <title>test</title>
  <meta name="description" content="">
  <meta name="author" content="">
  <!-- Mobile Specific-->
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!-- CSS-->
  <link rel="stylesheet" href="bootstrap.min.css">
  <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js'></script>
</head>
<body>
  <div id="login" class="modal">
    <div class="modal-header">
      <h3>Login to Room fuga</h3>
    </div>
    <div class="modal-body">
      hogehoge
    </div>
  </div>
  <script src="bootstrap.min.js">
  </script>
  <script>
$('#login').modal();
</script>
</body>
</html>
share|improve this question

5 Answers

I found this workarround to fix this issue:

$('#YourModal').modal().css(
            {
                'margin-top': function () {
                    return -($(this).height() / 2);
                }
            })

Source: https://github.com/twitter/bootstrap/issues/374

share|improve this answer
This solution doesn't works: jsfiddle.net/sonic1980/szFtE – Peter Dec 30 '12 at 16:19
Thanks, Saved the day – Jay Dave Mar 29 at 6:35

if your twitter bootstrap modal dialog is not centered horizontally you can fix this via css.

just give the modal dialog a negative left margin that is half it's width like e.g. so:

 .modalDialogBlabla {
     margin: 0 0 0 -250px;
     width: 500px;
  }
share|improve this answer
1  
Very clean and very nice solution! And although it doesn't answer the question (vertical centering), it DOES work like a charm for horizontal. – Petr Vostrel Jan 19 at 15:24
yeah thanks for this! – the0ther Feb 13 at 18:18

Capture the show event of the .modal and then calculate the new position:

$('body').on('show', '.modal', function(){
  $(this).css({'margin-top':($(window).height()-$(this).height())/2,'top':'0'});
});​

DEMO: http://jsfiddle.net/sonic1980/b2EHU/

share|improve this answer

Based on p4810's answer above but deal with where the user is on the screen too. Works with absolute positioning.

$('#YourModal').modal().css(
            {
                'margin-top': function () {
                    return window.pageYOffset-($(this).height() / 2 );
                }
            });
share|improve this answer

Did you try:

$( "#login" ).dialog({
    modal: true
});

Ref: http://jqueryui.com//demos/dialog/modal.html

share|improve this answer
Is this way using jquery ui? I want to use bootstrap modal plugin. sorry. – user1362813 Apr 28 '12 at 13:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.