You can use CSS to move the arrows and place them wherever you like.
Open the css fancybox file (jquery.fancybox-1.3.4.css) and around line 145 you will find the following css styles. Change the left and right position from the default value (0) to the position where the arrow should be displayed.
#fancybox-left {
left: -50px;
}
#fancybox-right {
right: -50px;
}
-50pxmust pull both arrows out of bounds. You can change this to position the arrows where you want.
Update - V.2.0.3 Style label in fantasy style.In version V2, find the following in the css sheet and modify it accordingly.
.fancybox-prev {
left: 0;
}
.fancybox-next {
right: 0;
}
source
share