Hi Support
Thank you very much, it works very well. Great Job!
I have one more thing. Can i somehow define with a code that the title and description are always visible. In full screen mode, everything around the image fades out after a few seconds. It would be cool if only the title and the description with the image were visible and everything else disappears as it does now.
Thanks again for your great help.
Meggs
For the Community the adjustments on "ARI Fancy Lightbox -> Settings ->Advanced" page:
Code: |
$('.jig-link').each(function() {
var $el = $(this);
var title = $el.find('.jig-caption-title').html();
var description = $el.find('.jig-caption-description').html();
if (title) {
$el.attr('data-caption', title);
}
if (description) {
$el.attr('data-description', description);
}
});
|