Search code examples
jquerycssfancyboxtitle

Fancybox v3 Beta 1 (disable title)


difference betwin images/titles

enter image description here

I setup my gallery, but when I go next or prew picture, in the first time load picture and then title. After scrolling picture title area moves it. I want to disable title area. But I can't it.

This code do not work:

helpers: { 
    title: null
}

and

helpers: {
    title: false
}

When I disable title using CSS, I do not see text, but area of title remains. test site: http://eurospichki.esy.es/ (first page)


Solution

  • If Javascript parameter is not working then you can achieve it via CSS also:

    .fancybox-title-outside-wrap {
      display:none !important;
    }
    

    Although, this is not perfect solution but it will hide your title at least.