I have some galleries on http://rockcitybless.com which work perfectly in IE, Chrome and the desktop versions of Safari, Firefox and others.
But on iPa
It seems to be a problem in iOS when setting the visibility to hidden. If we set this to visible and adjust the opacity instead then this should keep the same functionality.
Add this to your CSS file:
.fancybox-nav span {
visibility: visible !important;
opacity: 0;
}
.fancybox-nav:hover span {
opacity: 1;
}