Search code examples
jqueryfancybox

How to position fancybox on top


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.


Solution

  • $.fancybox({
       'width'     : 620,
       'height'    : 490,
       'speedIn'    :600,
       'speedOut'   :200,
       'onComplete': function() {
          $("#fancybox-wrap").css({'top':'20px', 'bottom':'auto'});
       }
    });