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,852

(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,854

(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,856

(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,858

(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,859

(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,860

(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,862

(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,863

(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,864

(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,865

(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,866

(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,867

(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,868

(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,869

(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,870

(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.

4,871

(4 replies, posted in Juicebox-Pro Support)

Juicebox does not currently have the ability to horizontally or vertically align the main images within the image area.
We plan to introduce new configuration options to allow such positioning in the next version of Juicebox-Pro (though I do not know when it will be released).

4,872

(4 replies, posted in Juicebox-Pro Support)

As long as showImageOverlay="AUTO" (which is the default value for this configuration option), then tapping on the screen should toggle the overlay. However, this will not happen if you set showImageOverlay="ALWAYS" or showImageOverlay="NEVER".

If this does not help, please post the URL to your gallery so that I can take a look.

@contactgeoff

I notice that your gallery uses Juicebox-Pro v1.1.1. Please try upgrading to the current version (v1.2.0) to see if this makes a difference.
Please see the Upgrading Juicebox page for details.

4,874

(8 replies, posted in Juicebox-Pro Support)

Looking at the source of the page which does not function as expected on mobile devices, I notice that your two galleries use different configuration options. The gallery that does not function as expected uses a Splash Page (whereas the other gallery sets useSplashPage="NEVER"). It is possible that there is a CSS conflict which affects only the Splash Page. (The gallery itself functions OK once the Splash Page is clicked.)
Try using the same configuration options for both galleries to see if this makes a difference.

4,875

(8 replies, posted in Juicebox-Pro Support)

What I am saying in my post above is that both of your galleries (http://chesterfieldsbronzes.com/temp/ and http://chesterfieldsbronzes.com/temp/test2/) scale dynamically with the size of the user's browser window.
If this does not happen in your own browser, try clearing your browser's cache to ensure that it is not hanging onto and using older versions of your gallery files.