Reputation: 3813
I'm adding fancybox to my site and I'm using inline but the next and previous links are covering the inline content. I don't understand why they would show up at all for inline content.
How do I force the next and previous links to turn off?
Here is an example of the problem:
Example http://scclib.com/staff/example.png
My JS Code: $(".fancybox").fancybox({ 'showNavArrows' : false, 'type' : 'inline' });
Upvotes: 3
Views: 11463
Reputation: 5743
In fancybox >= 2.0 it is just
$("selector").fancybox({
arrows : false
});
Upvotes: 2
Reputation: 38147
You can disable them using the following option :
$("selector").fancybox({
'showNavArrows' : false
});
For FancyBox version 2 and above its :
$("selector").fancybox({
arrows : false
});
Upvotes: 16