Search code examples
fancyboxfancybox-2fancybox-3

Fancybox 3: position the iFrame in the top of the viewport?


How to position the iFrame in the top of the viewport? 20 pixels down?

Here is my Fancybox code:

$("[data-fancybox]").fancybox({
  iframe : {
    preload: false
  },
  .....
});

Solution

  • The content (except images) is centered using CSS only, therefore it would be something like this:

    .fancybox-slide--iframe .fancybox-content {
        vertical-align: top;
        margin: 20px;
    }