How to position the fancybox 100px from top by default it is center aligned.
I believe there is no api settings for that. Can anyone help me out in doing it on the actual script.
How to position the fancybox 100px from top by default it is center aligned.
I believe there is no api settings for that. Can anyone help me out in doing it on the actual script.
I've never used fancybox myself but it looks like you need to set centerOnScroll to false and then position the #fancybox-wrap with css however you see fit.
$.fancybox({ 'width' : 620, 'height' : 490, 'speedIn' :600, 'speedOut' :200, 'onComplete': function() { $("#fancybox-wrap").css({'top':'20px', 'bottom':'auto'}); } });