4,851

(1 replies, posted in Juicebox-Pro Support)

What you are seeing on your iPhone is the Splash Page.
For more information on the Splash Page, please see here.
You can disable or configure the Splash Page using the Splash Page configuration options.

The reason that your Splash Page image is not displaying correctly is possibly due to a conflict between the CSS of your current WordPress theme and that of the gallery itself.
Try temporarily reverting to the default WordPress theme to see if this makes a difference.

Thank you for sharing your solution.
That seems to work well across all browsers (and versions of Internet Explorer).
It would be great if valid code was rendered identically in all browsers but this is not always the case, especially in older browsers.

So far, I have been unable to create a stripped-back test case which fails in IE8 by nesting the 'juicebox-container' <div> in multiple parent containers. As long as all the parent containers have heights specified by inline CSS, the gallery is displayed at the correct height in IE8 (and other browsers).

4,853

(7 replies, posted in Juicebox-Pro Support)

why when clicking on the Gallery image I'm taken to the jbcore/full.html page

Please see the description of the expandInNewPage configuration option and the Expand Gallery Behavior section for more information.

why is it blank

This looks like a bug relating to the use of a baseUrl and a relative path for a themeUrl.
Try putting your gallery's 'theme.css' file in the 'jbcore/classic/' folder (overwriting the stock 'theme.css' file) and then remove the themeUrl entry from your gallery's embedding code.
I have logged a bug report with the developers.

4,854

(1 replies, posted in Juicebox-Lite Support)

If you were a Juicebox-Pro user, you could use the imagePadding and/or stagePadding configuration options to add padding around a main image when no thumbnails are being displayed. Both configuration options are Juicebox-Pro only (and are not available to Juicebox-Lite users) and take effect when thumbnails are displayed or hidden. The stagePadding surrounds the entire gallery (including thumbnails when they are displayed) and the imagePadding surrounds only the main image.

If using Juicebox-Lite, perhaps the easiest way to create padding around an entire gallery would be to create a border (of the same color as your gallery's background) around your gallery container <div> using CSS.

It would not be possible to create padding around a main image only when thumbnails are hidden by editing a Juicebox-Lite gallery's 'theme.css' file as the logic behind determining whether or not thumbnails are hidden is coded within the 'juicebox.js' JavaScript file which is obfuscated and cannot be modified.

4,855

(2 replies, posted in Juicebox-Pro Support)

No. That arrangement would not work.
All the Juicebox gallery files must be on the same domain/subdomain as the page containing the JavaScript embedding code.
Please see this web page for more information about the JavaScript same-origin policy.

If your JavaScript embedding code is on a page on www.mydomain.com, then the gallery files would also need to be on that domain.
Otherwise, you could embed your gallery using an <iframe> (documented as Option #2 here).
You could upload your gallery folder to www.gallery.mydomain.com (and the gallery would be actually be embedded in the 'index.html' file within the gallery folder on that domain) and you could then load the gallery's 'index.html' file into an <iframe> on a page on www.mydomain.com.
However, please note that when embedding a gallery in an iframe, the 'Expand Gallery' button is disabled and the 'Back Button' will not work.

There is a lot going on within your web page and as it loads, you can visibly see elements shifting around until they settle in place (as the JavaScript and CSS is being rendered by the browser).

There are differences in your web page, not just between versions of Internet Explorer but also between different browsers.
For example, in Firefox 19.0.2, your 'Select Language' combobox is initially completely obscured by the gallery (which it is not in IE10, Chrome 25 or Safari 5.1.7) but it partially appears if you resize the browser window and then maximize it.

As you are expressing your galleryWidth and galleryHeight as percentages, check all parent containers of the Juicebox container (your 'box_slideshow' <div>) to ensure that they all have heights specified via CSS and please see the Using Percentage Heights note in the embedding guide. This suggests using inline CSS on the parent containers rather than on the Juicebox container (your 'box_slideshow' <div>) itself.

If there is a problem with the gallery not being able to determine it's height in certain browsers, then you could perhaps express your gallery's height as a fixed pixel value rather than as a percentage.

Another workaround might be to isolate the gallery completely from the rest of your web page by embedding it using an <iframe>, documented as Option #2 here. As your gallery does not use the Expand Button or Back Button, there should be no drawbacks to using an <iframe>. This should avoid any conflicts with your main page and should hopefully work in all browsers.

4,857

(5 replies, posted in Juicebox-Pro Support)

I am glad that you have been able to solve your problem.
Thank you for posting back to let me know.

The link you have provided redirects to http://afrika.delosgaia.nl/index.htm and there seems to be only a SimpleViewer gallery on the page. I see neither a Juicebox-Pro gallery, nor the code you posted (only <div id="box_slideshow"></div>).

I'm not sure it will help (as I have not yet seen the page containing your Juicebox-Pro gallery) but take a look at this FAQ (it relates to IE9 but may also be relevant to IE8):
My gallery looks strange in Internet Explorer 9. Why?

Also, if you are embedding your Juicebox-Pro gallery directly into your 'box_slideshow' <div>, then try removing the 'style' attribute from the <div>, set your gallery's dimensions using the galleryWidth and galleryHeight configuration options (in the embedding code) and, if expressing galleryWidth and galleryHeight as percentages, check all parent containers of your 'box_slideshow' <div> to ensure that they all have heights specified via CSS.

There have been a couple of issues specific to IE8 (regarding the opacity of thumbnail frames and the the FADE image transition type) but these have already been addressed and will be fixed in the next version of Juicebox-Pro.
Just to let you know, there are no known issues regarding gallery sizing in IE8.

If you continue to experience difficulties, please post the link to your Juicebox-Pro gallery so that I can take a look and investigate further.

4,859

(5 replies, posted in Juicebox-Pro Support)

If you have two gallery folders (named 'gallery1' and 'gallery2') which are complete and self-contained (apart from sharing a 'jbcore' folder in a different directory) and wish to display one of the galleries in the web page which contains the code you posted above, then you will need to use the baseUrl configuration option to point to a gallery folder.
Try the following code:

<div id="header">
    <a href="gallery1/index.html">Gal1</a> | <a href="gallery2/index.html">Gal2</a>
</div>

<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
    new juicebox({
    containerId: "juicebox-container",
    baseUrl: "gallery1/",
    galleryWidth: "100%",
    galleryHeight: "100%",
    backgroundColor: "#222222"
    });
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
       
<div id="footer">This is the footer.</div>

This is not possible.
The only way to display the grid of thumbnails is to set screenMode="SMALL" but the Large Screen Mode configuration options will work only in Large Screen Mode. There is no way to mix or change the screen modes in a gallery.

4,861

(2 replies, posted in Juicebox-Pro Support)

This is due to a known bug which has been addressed and will be fixed in the next version of Juicebox-Pro (although I do not know when it will be released).

is there a way i could get a splash page with a full thumbnail overview of the gallery?

A Splash Page is a placeholder for the gallery: an image which, when clicked, displays the gallery itself.
This is different from the thumbnail grid displayed in Small Screen Mode.
If you always want the thumbnail grid to be displayed, set screenMode="SMALL".
If you always want the Splash Page to be displayed, set showSplashPage="ALWAYS".

4,863

(3 replies, posted in Juicebox-Pro Support)

If there were less images in the galleries would that make it appreciably faster?

No. By default, Juicebox preloads only the main images on the current thumbnail page (and not all the images in the gallery at once). See the description of the imagePreloading configuration option in the Main Image Options section of the Config Options page for further details.
However, reducing the file size of your images may help if they are rather large. (If creating a gallery with JuiceboxBuilder-Pro using the default settings, the images are resized to approximately 100-120KB each which is suitable for web gallery use.)

I have not yet studied Cloudfront, but I have heard about it a couple times in conversation. Could this assist in speed of delivery? Are there any faster ways to deliver up an image to Juicebox than Picasa?

Probably the fasted method of delivery would be to host the images on the same web server as your WordPress installation using the WordPress Media Library as the source of your images.

4,864

(3 replies, posted in Juicebox-Pro Support)

In order to display a Juicebox gallery, your web page must load the 'juicebox.js' file (which, in turn, loads the 'theme.css' file and other related resources).
However, there is no way to speed this up (other than to perhaps host your images locally rather than have Juicebox fetch them from Picasa's servers). WP-Juicebox embeds a Juicebox gallery using the same method as is described in the Embedding Guide with the exception that your WordPress pages and the Juicebox XML file are created dynamically by PHP when the page and gallery are viewed. If all pages were static, things might run a little quicker (as your server would not need to create the pages on demand) but this is not how WordPress works. The advantage of having the Juicebox XML file created dynamically is that you can change your gallery's images and captions directly in Picasa without having to manually rebuild your Juicebox XML file afterwards.

4,865

(8 replies, posted in Juicebox-Pro Support)

There should be no problem in redirecting 'cal500.com' to 'www.cal500.com'.
The users will always end up browsing 'www.cal500.com' and that is where your absolute URLs point to.

On this web page: http://www.irmucha.pl/nieswiateczne.html
... it looks like the initial gallery is being displayed by the following code:

$(document).ready(function () {
    doLayout();
    $(window).bind('resize', doLayout);
    new juicebox({
        containerid : 'juicebox-container'
    });
});

... and this instance of Juicebox does not have a valid 'config.xml' file in the correct location.
Try adding the baseURL configuration option (from the embedding code further down your page) to the code above, i.e.:

$(document).ready(function () {
    doLayout();
    $(window).bind('resize', doLayout);
    new juicebox({
        containerid : 'juicebox-container',
        baseUrl : 'nieswiateczne/'
    });
});

I expect that you may not need both instances of embedding code on your page.
Once you have added the baseURL configuration option to the first instance (at the top of the page), try removing the second instance (at the bottom of the page).

4,867

(6 replies, posted in Juicebox-Pro Support)

My sample code is a complete gallery 'index.html' page.
It would be difficult to incorporate this within Showkase as Showkase builds web pages from many source files.
You could perhaps edit a gallery's 'index.html' page (once the gallery pages have been built) but the code above relies on the gallery's background being transparent, which may not be suitable for your scenario.

Juicebox was not designed to allow for different background colors in normal and fullscreen modes and this is the best solution that I can think of.

4,868

(1 replies, posted in Juicebox-Pro Support)

With the single-site license, you can have an unlimited number of galleries on an unlimited number of pages (as many galleries per page as you like) as long as all your galleries are hosted on the same domain (and any subdomains).

4,869

(6 replies, posted in Juicebox-Pro Support)

It might need a little tweaking depending on your own scenario but here is an example which has a gallery with a red background in normal mode and a #d9d9d9 background in fullscreen mode:

<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Juicebox-Pro Gallery</title>
        <meta charset="utf-8" />
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <style type="text/css">
            body {
                margin: 0px;
            }
        </style>
    </head>
    <body>
        <!--START JUICEBOX EMBED-->
        <script src="jbcore/juicebox.js"></script>
        <script>
            jb=new juicebox({
                containerId : 'juicebox-container',
                galleryWidth: '400',
                galleryHeight: '400',
                backgroundColor: 'rgba(0,0,0,0)'
            });
            jb.onExpand = function(isExpanded) {
                if (isExpanded) {
                    document.body.style.backgroundColor="#d9d9d9";
                    document.getElementById("jb-glry-dlg").style.backgroundColor="#d9d9d9";
                    
                } else {
                    document.body.style.backgroundColor="#ffffff";
                    document.getElementById("jb-glry-dlg").style.backgroundColor="#ff0000";
                }
            };
        </script>
        <div id="juicebox-container" style="background-color: #ff0000;"></div>
        <!--END JUICEBOX EMBED-->
    </body>
</html>

4,870

(4 replies, posted in Juicebox-Lite Support)

There is no App (or any other method) that will allow you to create and upload a Juicebox gallery from a mobile device.
As an alternative to my Flickr suggestion, you could first set up a Juicebox gallery (on your computer) using a PHP file to read the contents of a directory and to display the images contained with that directory in your Juicebox gallery.
Please see this forum post for an example of such a PHP file.
You could then upload your images to the specified directory on your own web server using an FTP App.

4,871

(8 replies, posted in Juicebox-Pro Support)

As far as relative and absolute URLs are concerned, how can I modify the code where the absolute and relative URLs are included?

Try the following embedding code (the leading slash in the URLs denotes the root directory):

<!--START JUICEBOX EMBED-->
<script src="/juiceboxhomepage/jbcore/juicebox.js"></script>
<script>
  new juicebox({
      containerId : 'juicebox-container',
      galleryWidth: "550",
      galleryHeight: "475",
      backgroundColor: "rgba(0,0,0,0)",
      baseUrl : '/juiceboxhomepage/',
  });
  </script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

4,872

(4 replies, posted in Juicebox-Pro Support)

Thank you for providing the URL to your gallery.
You have chosen to display the 'Info Button' in your gallery.
As noted in the description for the showInfoButton configuration option in the Button Bar Options section of the Config Options page:

If set to TRUE, then the default behaviour controlling overlay visibility is disabled.

You can now toggle the overlay on and off by tapping on the Info Button rather than anywhere on the screen.

4,873

(6 replies, posted in Juicebox-Pro Support)

Juicebox uses only one backgroundColor configuration option for both normal and fullscreen modes.
You could try changing the background color of the gallery container using JavaScript when the Juicebox-Pro API method onExpand() is fired.

4,874

(8 replies, posted in Juicebox-Pro Support)

@marcrmiller

Your gallery displays and functions OK in IE10 on my PC (and also in Firefox 19.0.2, Chrome 25 and Safari 5.1.7).

Please note that as you have use the www.cal500.com subdomain in the URLs within your embedding code, your gallery will display only when you access your web site using the www.cal500.com subdomain (and not when going to the main cal500.com domain).
All gallery files must be on the same domain (or subdomain) as the web page containing the embedding code due to the JavaScript same origin policy.

One solution to this would be to use relative URLs (rather than absolute URLs) in your embedding code.

4,875

(4 replies, posted in Juicebox-Lite Support)

You could perhaps first set up a Juicebox gallery (on your computer) using a Flickr account as the source of images.
You could then upload your images from your iOS device to your Flickr account and they would then appear in the Juicebox gallery without any modification to the gallery itself.