サインアップボタンをクリックすると、ポップアップが開きます....デスクトップでは正常に動作しますが、ブラウザウィンドウを縮小すると、ポップアップがブラウザの左隅に移動します.....\ iPhoneの中央にポップアップする....それを修正する方法....
以下に私のコードを提供します....
<div class="modal hide fade" id="signup-modal">
<a class="close" data-dismiss="modal">×</a>
<h1>Sign up </h1>
<form method="POST" autocomplete="off" id="id_registerForm">
<input type="hidden" name="usertype" value="3" readonly />
<fieldset>
<input type="text" placeholder="Name" name="fullname" maxlength="30" required="required" id="id_username" />
<input type="text" placeholder="Company" name="company" maxlength="30" required="required" id="id_company" />
<input type="email" placeholder="Email" name="email" maxlength="75" required="required" id="id_email" />
<input type="password" placeholder="Password" name="password" required="required" id="id_password" />
<input type="password" placeholder="Retype Password" name="repassword" required="required" id="id_repassword" />
<textarea name="inquiry" placeholder="Inquiry" rows="3" required="required" id="id_inquiryForm" style="width:290px;"></textarea>
<input id="id_signUp" type="button" value="Sign Up" class="btn">
</fieldset>
<!-- <a href="#myModal" role="button" data-toggle="modal"><span>Already have an account?</span> Log in</a> -->
</form>
</div>