How to position fancybox on top

Nizam picture Nizam · Jul 7, 2010 · Viewed 70.9k times · Source

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.

Answer

jede picture jede · May 25, 2011

The solution I got working was styling the wrapper like this:

#fancybox-wrap {
  position: absolute;
  top: 100px !important;
}

Hope it helps!