for exemple, you can change js/zpB_fancybox_config.js like that:
```
$(document).ready( function() {
$().fancybox({
// FancyBox shows only filtered items with Isotope
selector : $("#isotope-wrap").length ? '.isotope-item:visible > [data-fancybox="images"]' : '[data-fancybox="images"]',
loop : true,
preventCaptionOverlap: true,
idleTime : 10,
margin : [20, 0],
buttons : [
'thumbs',
'slideShow',
'close'
],
protect : true,
animationEffect : 'fade',
touch : {
vertical : false
},
slideShow : {
autoStart : false,
speed : 3000
},
clickContent : function( current, event ) {
return current.type === 'image' ? 'toggleControls' : false;
},
clickSlide : false,
clickOutside : false,
dblclickContent : function( current, event ) {
return current.type === 'image' ? 'next' : false;
},
caption : function( instance, item ) {
if ($(this).find('.caption').length) {
return $(this).find('.caption').html();
} else {
return $(this).attr('title');
};
},
mobile : {
thumbs : false,
idleTime : 5,
clickContent : function( current, event ) {
return current.type === 'image' ? 'toggleControls' : false;
},
dblclickContent : function( current, event ) {
return current.type === 'image' ? 'next' : false;
},
dblclickSlide : false,
},
});
});
```
I changed/added
```
preventCaptionOverlap: true,
idleTime : 10,
```
in global options
and
```
mobile : {
thumbs : false,
idleTime : 5,
```
for mobiles options
let me know if it's OK for you with these changes