2013-04-16 87 views
0

我有這樣的模態窗口在我的應用程序,這項工作很好出現模態窗口底部

<div id="modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> 

但模式出現時,這似乎爲我的窗戶上,我想出現底部

該應用程序是一個joomla 3.0!和我使用的模板Meet Gavern

任何想法?

回答

0

我發現溶液

予修正de CSS在自舉

.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; 
}