I’ve modified how far down the modal is but now the sliding down effect from adding the fade class is not working anymore. Is there a way to get the sliding effect working with changing the top distance?
html:
<div id='test-modal' class='modal fade hide'>
<div>Stuff</div>
</div>
css:
#test-modal.modal {
top:35%;
}
jsfiddle:
http://jsfiddle.net/Kcnq4/
if you add
.fade.inwith your class then fade in effect will remain there.you can test it here.