Question

I am trying to implement Modal Window in my html. On Clicking Register the modal Window appears. But when i implement a second modal window for Login only the background changed but the window doesnt appear

http://play.mink7.com/minkstock/

Was it helpful?

Solution

Your login modal div element is within the register modal div element. I think you forgot a closing </div>

OTHER TIPS

You will need to add second modal for login modal, same as you have added for register-modal

<div id="login-modal" class="modal hide fade landing-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3>Login</h3>
</div>
<div class="modal-body">
    <!-- your login code -->

   </div>

</div>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top