Is there some way of adding our logo somewhere on the gallery?
Please see the Adding a Logo support section for suggestions on how to incorporate a logo into a Juicebox gallery.
in fact they may think they're on the juicebox website because of the logo in the bottom right corner.
If you would like to remove the Juicebox branding from your gallery, you could purchase Juicebox-Pro. Pro galleries do not have the Juicebox badge/link in the lower-right corner.
It would be great too if it only showed up when they went to the elarged view but I'm guessing that's either a Pro feature or requires some tricky [programming.
This is not something that could easily be implemented just by setting a configuration option but it might be possible with the Juicebox-Pro API.
You could run some custom JavaScript code when the gallery is expanded using the onExpand(expanded) event.
jb.onExpand = function(expanded) {
if (expanded) {
// Gallery has been expanded. Do something.
}
if (!expanded) {
// Gallery has been closed. Do something else.
}
};