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
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; }