Topic: Splash page style [SOLVED]

Is it possible to remove the 'VIEW GALLERY' and the overlay from the Splash Image?

I'm using 'splash url' and want the image without anything written over it.

Thanks

Re: Splash page style [SOLVED]

You can change the default 'VIEW GALLERY' text using the splashButtonText configuration option. (To remove it, just set splashButtonText="".)
However, if you want to completely remove the Splash Page Overlay, then add the following CSS to the <head> section of your gallery's embedding page.

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

Re: Splash page style [SOLVED]

Thats perfect, many thanks