Hi,
in my KenBurn slider at the frontpage are images, that link to external URLs.
How can I apply a target=blank to these external links within the slider config settings?

Thanks
Hi,
in my KenBurn slider at the frontpage are images, that link to external URLs.
How can I apply a target=blank to these external links within the slider config settings?

Thanks
Unfortunately Velvet does not offer such an option. You can use following js script though - it adds a target_blank attribute to all external links. Add the code to js/avia.js after the document.ready code line:
jQuery(".slideshow_container a").filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');thanks a lot!
This topic has been closed to new replies.