jquery - appear modal windows bottom -
i have modal windows in application, work fine
<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="mymodallabel" aria-hidden="true">
but when modal appears, appear top of windows, , want appear bottom
the application joomla 3.0! , using template of meet gavern
any idea?
i found solution
i modified de css in bootstrap
.modal.fade { top:-25%; -webkit-transition:opacity .3s linear, bottom .3s ease-out; -moz-transition:opacity .3s linear, bottom .3s ease-out; -ms-transition:opacity .3s linear, bottom .3s ease-out; -o-transition:opacity .3s linear, bottom .3s ease-out; transition:opacity .3s linear, bottom .3s ease-out; }
Comments
Post a Comment