4,676

(2 replies, posted in Juicebox-Lite Support)

.air files (Adobe AIR application installation files) should be associated with Adobe AIR (so that they are run by Adobe AIR when you open them) but somehow, they seems to be associated with Waveburner on your system.
You will need to re-associate .air files with Adobe AIR. Take a look at this web page for instructions on how to do this.

4,677

(3 replies, posted in Juicebox-Pro Support)

Juicebox does not support such functionality out-of-the-box but if you wanted to, you could created your own conditional statements (based on platform or resolution) within your gallery's JavaScript embedding code and then direct the gallery towards an appropriate XML file (listing the images you wish to display) using the configUrl configuration option.

If you want to add a themeURL to your WP-Juicebox galleries, edit the plugin's 'wp-juicebox/wp-juicebox.php' file in a plain text editor and add the themeURL entry between lines 1005 and 1006 (immediately after the new juicebox({ line), e.g.

themeUrl: "http://www.example.com/custom/theme.css",

Please note that this will apply to all galleries created with the plugin.

I have viewed your gallery in IE8 (using the Windows Virtual PC VHD) and although I see your problem (your gallery is not displayed), I am unable to replicate it.
I have created several stripped-back test cases as close to your scenario as possible using a Juicebox-Pro v1.3.1 gallery with a baseUrl and a themeUrl loading jQuery 1.9.0 and jQuery 1.9.1 (in separate test pages) both before and after loading 'juicebox.js' and incorporating a $(window).bind('resize load', function(e) {}) call to resize the gallery on a change of browser window size and every test case I created displays OK within IE8 (without the need to load the 'theme.css' file into the page using a <link> tag).
It looks like there may be something else within your web page's code which is preventing your gallery from being displayed.
Try enclosing your jQuery calls inside a $(document).ready(function () {}) wrapper (as suggested here) to see if this makes a difference.

4,680

(5 replies, posted in Juicebox-Pro Support)

Thank you for clarifying the problem.
I did not see this problem whilst viewing your web page previously and I have just viewed your web page again in IE10 and both galleries still display all images as expected for me.
If you have made any modifications to either of your galleries, you may need to clear your browser's cache again before reloading your web page.
Please see this FAQ:
When I update my gallery I don't see my changes online. Why?

This page is working with IE 10 but not with IE8
http://afrika.delosgaia.nl/visit_to_mad … narivo.htm

Your gallery displays OK using IE8 Browser Mode within IE10 for me. I have loaded the page several times (both with and without clearing the cache) and the gallery is always displayed.

I do not know what other features of jQuery you require but you could try either upgrading jQuery to the current stable version (v1.9.1) or just use the version of jQuery embedded within the 'juicebox.js' file.

4,682

(5 replies, posted in Juicebox-Pro Support)

it is on and off, and so annoying.

Could you please explain in greater detail what the problem seems to be (what you are seeing and what you expect to see)?
Both galleries on your web page look OK to me. All 6 images in both galleries display OK. (Viewed in Firefox 20.0.1, IE10, Chrome 26 and Safari 5.1.7.)

4,683

(11 replies, posted in Juicebox-Pro Support)

Try re-saving your font files with the IcoMoon App.
I loaded your 'juicebox.svg' file into the App, re-saved the font (without making any modifications), put the necessary font files into the 'jbcore/classic/fonts/' folder and the icons appeared correctly in IE10.

4,684

(5 replies, posted in Juicebox-Pro Support)

Your gallery displays all 4 images when I view it in IE10.
Try clearing your browser's cache to ensure that your browser is not hanging onto and using older versions of your gallery files.

4,685

(2 replies, posted in Juicebox-Pro Support)

Try changing:

<div id="juicebox-container"></div>

... to:

<div id="juicebox-container" style="float: left;"></div>

4,686

(3 replies, posted in Juicebox-Pro Support)

Juicebox-Pro v1.3.1 now features integrated support for sharing images via Pinterest by setting sharePinterest="TRUE" in the gallery's XML file. Please see here for details.
If you are not already using Juicebox-Pro v1.3.1, then you can upgrade by following the instructions here.

4,687

(4 replies, posted in Juicebox-Lite Support)

(1) Try the following as your 'index.html' file. It uses a fixed height header and footer (which both span the entire width of the page) and a fixed width menu. The dimensions of these elements can all be changed in the CSS on the page. The gallery will always take up the remainder of the space on the page no matter what the size of the user's browser window is.

<!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;
            }
            body, html {
                height: 100%;
                overflow: hidden;
            }
            #header {
                height: 50px;
                width: 100%;
                background-color: #222222;
            }
            #footer {
                height: 50px;
                width: 100%;
                background-color: #222222;
            }
            #wrap {
                width: 100%;
            }
            #menu {
                height: 100%;
                width: 100px;
                background-color: #222222;
                float: left;
            }
            #gallery {
                height: 100%;
                float: right;
            }
        </style>
        <script src="jbcore/juicebox.js"></script>
        <script>
        function doLayout() {
            var winHeight, winWidth, headerWidth;
            winHeight = window.innerHeight ? window.innerHeight : $(window).height();
            winWidth = window.innerWidth ? window.innerWidth : $(window).width();
            headerHeight = $('#header').outerHeight();
            footerHeight = $('#footer').outerHeight();
            menuWidth = $('#menu').outerWidth();
            $('#wrap').height(parseInt(winHeight) - parseInt(headerHeight) - parseInt(footerHeight));
            $('#gallery').width(parseInt(winWidth) - parseInt(menuWidth));    
        }
        $(document).ready(function () {
            doLayout();
            $(window).bind('resize', doLayout);
            new juicebox({
                containerid : 'juicebox-container',
                galleryWidth: '100%',
                galleryHeight: '100%'
            });
        });        
        </script>
    </head>
    <body>
        <div id="header"></div>
        <div id="wrap">
            <div id="menu"></div>
            <div id="gallery">
                <div id="juicebox-container"></div>
            </div>
        </div>
        <div id="footer"></div>
        <!--END JUICEBOX EMBED-->
    </body>
</html>

(2) Try using the code above (inserting your own header, footer and menu content) and upgrade your gallery from Juicebox-Pro v1.2.0 to the latest version (v1.3.1) by following the instructions here to see if this fixes the problem.

4,688

(1 replies, posted in Juicebox-Pro Support)

It is not possible to display tagged images within a Flickr set.
You can choose to either display a set (using flickrSetId) or tagged images (using flickrTags in conjunction with either flickrUserName or flickrUserId) but not tagged images within a set.
This is a limitation of Flickr itself and is documented in the description of flickrSetId on the Config Options page.

Chrome (v26) was one of the 5 browsers I checked your web page in.
I just checked your web page again in Chrome (both before and after clearing the cache) and your thumbnails appeared both times with no problems.
Try clearing your own browser's cache before reloading your gallery to see if this makes a difference.

Everything now works, except you have to click the mouse button somewhere on the page before you can get the spacebar to work

It is necessary to click somewhere within the gallery to bring the gallery into focus and enable the keyboard controls.
This is normal behavior.

and often on first opening the page the thumbs won't load.

I have just viewed your gallery in 5 different browsers (none of which have previously displayed your web page or cached any of your images) and your thumbnails displayed with no problem in all 5.
Hopefully it is just a temporary glitch with either your web server or internet connection but if the problem continues for you, please let me know which browser(s) it happens in.

Also, you could try upgrading your gallery from Juicebox-Pro v1.3.0 to the latest version (v1.3.1) by following the instructions on this page to see if it makes a difference.

4,691

(12 replies, posted in Juicebox-Pro Support)

I'm glad the fix works. Thanks for letting me know.

4,692

(9 replies, posted in Juicebox-Pro Support)

For Chrome on iOS devices, you will need to set the viewport on your gallery page using the following code:

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Thank you for the additional information.
I have notified the developers as I do not personally have a Nexus 4 device on which to test.
What version of Juicebox-Pro do you use? (You have removed the version numbers from the top of the JavaScript and CSS files.)
If you are do not already use the latest version of Juicebox-Pro (v1.3.1), try upgrading your gallery to see if this makes a difference. Please see the Upgrading Juicebox page for details.
If you already use Juicebox-Pro v1.3.1 but have modified the 'jbcore/classic/theme.css' file (again, it is hard to tell as you have removed all comments and line breaks from the file), try reverting to the stock 'theme.css' file from the Juicebox-Pro download package to see if this helps.

Thank you for reporting this bug.
I have logged a bug report and it should hopefully be fixed in the next version of Juicebox.
Unfortunately, I have not yet found a suitable workaround.

4,695

(6 replies, posted in Juicebox-Pro Support)

The method Juicebox uses to incorporate SEO data has been tested and seems to work well with our demo SEO gallery here.
Take a look at the source of the page in a browser and try the Google demo search with http://juicebox.net and some terms from within the <noscript> section. The page for the demo SEO gallery should be displayed in the results.

on the search that one would put on a website to search just that site, doesn't it go directly to that site at that time and do the search?

I do not know. Perhaps it does take time and works only with sites which have already been indexed.

4,696

(1 replies, posted in Juicebox-Pro Support)

There is no captionFontSize configuration option in Juicebox-Pro but the font-size can be changed by editing the 'font-size' values on lines 227 and 236 (for the Titles and Captions respectively) in the 'jbcore/classic/theme.css' file.
The line numbers refer to Juicebox-Pro v1.3.1.

4,697

(1 replies, posted in Juicebox-Pro Support)

The font-weight of the caption cannot be changed via a configuration option in the gallery's XML file but it can be achieved by adding the following code to your gallery's 'jbcore/classic/theme.css' file:

.jb-caption p {
    font-weight: bold;
}

I don't know if the Flickr api supports this, but would there be any way to use some of the newer Flickr sizes besides just medium, large and original. Flickr has a large 1600 and large 2048 size, would there be a way to select for those sizes to be loaded.

I see no reference to the 1600 and 2048 sizes in the Flickr API flickr.photos.getSizes page or in the Photo Source URLs page.
Running one of my images through the Flickr API Explorer reveals the Large 1600 and Large 2048 sizes with size codes h and k respectively. However, these size codes do not appear in the list of available URLs in the 'Arguments -> extras' list on the flickr.photos.search page either.
It looks like these sizes may be available via the API but that Flickr's documentation needs to be updated.
Setting flickrExtraParams="url_k" does not override the flickrImageSize setting so, assuming the 1600 and 2048 sizes are available via the API (their documentation suggests not but their Flickr API Explorer suggests otherwise), it is currently not possible to display these sizes in a Juicebox-Pro gallery.
You could always post this as a suggestion in the Feature Request thread (though I cannot be certain that it is even possible).

And while I'm posting, I'll ask here about a bug I notice in Chrome on Android.
Having said that,

Please post the URL to a sample gallery that exhibits this behavior and also let us know which Android device you use. The more information we have, the better. Thank you.

4,699

(6 replies, posted in Juicebox-Pro Support)

It may take some time for Google to index your new Juicebox-Pro gallery.
In some cases, it may take up to 4 weeks before it shows up in Google search results.

4,700

(6 replies, posted in Juicebox-Pro Support)

More information about the new Social Sharing options can be found here.

The sample URL I posted was just an example of a page containing a gallery.
The principle is the same whether the gallery is displayed on its own page (the 'index.html' file within the gallery folder) or embedded in a different page.