Topic: Splash Page query

Hi Steven. I notie there is this image count overlay on bottom of left of mobile apps that shows pic id number, # of images and View Gallery link. How do I turn this off for mobiles?

Re: Splash Page query

What you are describing is the Splash Page.
The Splash Page is a placeholder for the gallery which is displayed by default on small screen devices when the gallery is embedded in a page alongside other content (rather than displayed on a page of its own with dimensions of 100% x 100%, filling the browser window).
When the user clicks/taps the Splash Page, the gallery is expanded to fill the user's browser window.
For more information about the Splash Page and how Juicebox adapts to different devices and screen sizes, please see here.

You can choose to not use the Splash Page by setting showSplashPage="NEVER" (in JuiceboxBuilder-Pro's 'Customize -> Splash Page' section).
Alternatively, you can force the gallery to be displayed in Large Screen Mode (which, by default, does not use the Splash Page) on all devices and in all browsers by setting screenMode="LARGE" ('Customize -> General').

If you choose to continue to use the Splash Page, you can customize it using the Splash Page configuration options.

You can remove the default Splash Page text ("View Gallery") by setting splashButtonText="".
You can remove the image count by setting splashShowImageCount="FALSE".

You can disable the entire overlay only via CSS by adding the following code to the <head> section of your gallery's web page:

<style type="text/css">
    .jb-splash-info {
        display: none;
    }
</style>

(If you do this, the Splash Page will still be displayed (unless you disable it using on of the suggestions above) and all the user will see is a single image with no indication that it should be clicked/tapped to open the gallery.)