In Fancybox 1.3.4 there were title options, like TitlePosition, TitleFormat. Are there replacements for these options?
Thanks
Here's the answer: Fancybox v2 override/format title
You need to use the beforeLoad() function to load a custom title element -
$(".fancybox").fancybox({
openEffect : 'elastic',
openEasing : 'easeOutBack',
closeEffect : 'elastic',
closeEasing : 'easeInBack',
helpers : {
title : {
type : 'inside'
}
},
beforeLoad : function() {
this.title = 'My Custom Title';
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With