Topic: Splash image without text

Hi

Is it possible to remove the text from the splash image?

I would like to expand to the full viewport juicebox from a small splash thumbnail.
I want the splash to be just a small image with no text link.

Many thanks

Re: Splash image without text

There are no configuration options which would do this but it could be achieved by adding the following code to the <head>section of the web page which includes your gallery.

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

Re: Splash image without text

Works great, thanks for prompt reply.

In order to get curser pointer to work on the splash image - is this correct?

.jb-splash
{
    cursor: pointer;
}

Many thanks

Re: Splash image without text

Yes. That will work fine.