You could remove the image count from the Splash Page by adding the following CSS code to the <head> section of your web page:
<style type="text/css">
.jb-splash-cnt {
display: none;
}
</style>
However, this would apply to both Large Screen Mode and Small Screen Mode.
If you want the code to apply to only Small Screen Mode (when the gallery is displayed on mobile and small screen devices), then you could check which Screen Mode is being used (via the Juicebox-Pro API getScreenMode() method) and then use JavaScript to apply the custom CSS rule to the relevant class.
Your gallery's embedding code might look something like this:
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
var jb = new juicebox({
containerId: 'juicebox-container',
screenMode: 'AUTO'
});
jb.onInitComplete = function() {
if (jb.getScreenMode() === 'SMALL') {
$('.jb-splash-cnt').css('display', 'none');
}
};
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
[Query moved to new forum thread.]