ブートストラップテーマでワードプレスを使用しています。私の問題は、ホームページでポップアップを開いて、mozilla で正常に動作していることですが、クロムでは垂直スクロールバーが表示されます。
ポップアップ div のコードは次のとおりです。
<div id="openHouse" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="overflow-y:hidden">
<div class="modal-body">
<button type="button" class="close well" data-dismiss="modal">×</button><br />
<a href="http://pearlacademy.com/open-house/"><img src="http://pearlacademy.com/wp-content/uploads/2012/11/Open-House-2.jpg" /></a>
</div>
</div>
およびjqueryファイル:
<script>
jQuery(document).ready(function($) {
$('#openHouse').modal('show');
});
</script>