1,976

(496 replies, posted in Juicebox-Pro Support)

@erikarand

Try the following.
Open your gallery's 'jbcore/classic/theme.css' file in a plain text editor and scroll down to the following section on line 742:

div.jb-status-loading {
    background: url('img/spinner.gif') no-repeat center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center
}

Add a background-size entry to this section of CSS, limiting the size of the 'spinner.gif' image to a quarter of its actual area.
For example, if your 'spinner.gif' image is 200px by 150px, then use values of half the width and half the height as follows:

background-size: 100px 75px;

If, after doing this, your 'spinner.gif' looks too small, create a larger source image and try the procedure above with the new image.
I hope this helps.

Please note that the line number above refers to the current version of Juicebox-Pro (v1.5.0).

1,977

(8 replies, posted in Juicebox-Pro Support)

I'm sorry to hear that the problem has returned.

If reloading the page (by pressing Cmd+R (Mac), Ctrl+R (Windows) or by selecting 'Web -> Reload' from the drop-down menu at the top) clears the problem when it occurs, then maybe it is something that you can live with.

Otherwise, you might like to disable the auto-update functionality (check out this forum post) and refresh the live preview window manually when required.

It is certainly a problem that appears to manifest itself only on certain systems. As I mentioned, I have never seen the problem myself on my own PC using the current version of the plugin (v1.5.0) with the current version of Lightroom (v6.6.1).

Thanks for keeping me updated.

1,978

(4 replies, posted in Juicebox-Pro Support)

I notice that the Button Bar works as expected when you view the gallery on its own web page (at '/photos/galleries/2014-11-16 garage/index.html').
On your main page, it looks like the hit areas for the Button Bar buttons are being offset (and not lining up correctly with the icons) because of the following code in your 'thomasblom.css' file.

a {
    padding-left: 20px;
    padding-right: 20px;
}

This code affects all <a> tags on your page, including those within the gallery.
There is no way to protect a Juicebox gallery (or any other HTML element) from such global CSS and the Juicebox gallery has no option but to inherit this CSS.
Perhaps the best solution would be to use CSS Selectors (classes and ids) to apply your custom CSS rules to only those elements on your web page that require them.
I hope this helps.

1,979

(8 replies, posted in Juicebox-Pro Support)

You're welcome.
Thanks for the additional info.

1,980

(8 replies, posted in Juicebox-Pro Support)

I am no longer experiencing this problem...

That's great to hear! Thank you for letting me know.
Just out of interest, are you a Mac OS 10.11 (El Capitan) user with an AMD graphics card (such as 6450M and 6970M)?
If so, then it looks like the problem may have been the known issue from Lightroom CC 2015.5.1 which might now have been fixed in Lightroom CC 2015.6.1.
(Otherwise, I'm not sure what the problem was but I'm still glad that it seems to have been resolved.)

1,981

(8 replies, posted in Juicebox-Pro Support)

Please see this forum thread which seems to describe the same problem that you are having.
Unfortunately, I still cannot replicate the problem on my own PC with Lightroom 6.6.1/CC 2015.6.1.
As I note in the forum thread, the sliders are generated using standard Lightroom SDK code and their functionality is handled by Lightroom itself (refreshing the live preview window when their values change).
The only workaround I have been able to find is to disable the live update and refresh the gallery manually when required (details in this forum post).

The problem could also be related to a known issue in Lightroom CC 2015.5.1.

Known Issue

Image flickers when moving an adjustment slider.  Note that this only occurs when using certain AMD graphics cards (such as 6450M and 6970M) on Mac OS 10.11 (El Capitan). We are working with our partners to resolve this issue. In the meantime, you can workaround this issue by disabling “Use Graphics Processor” in Lightroom’s preferences.

If you use a Mac with AMD graphics, then you might like to try the troubleshooting suggestion here.

I hope this helps.

1,982

(16 replies, posted in Juicebox-Pro Support)

Is this the same for the Lr plugin?

I would imagine that the resizing procedure used by Lightroom would be much more complex that what is available to JuiceboxBuilder-Pro within the Adobe AIR API.
As a test, I've just created a quick gallery with the Lightroom plugin and embedded copyright data is retained in the images exported for the gallery.

Do I have to make my images the same sizes as the settings in the 'Change Sizes' dialog, or does it make no difference?

I'd recommend that the images for the gallery are slightly larger than the gallery's image area (sometimes difficult to gauge for a responsive gallery) so that Juicebox can dynamically scale them down slightly if necessary. In doing so, the images will always be able to be displayed as large as possible within the gallery's image area. If your images are too small, then Juicebox will not scale them up unless you set imageScaleMode="SCALE" in the Main Image Options section (but scaling up small images will reduce their visual quality so I would not recommend it).
The default image size for JuiceboxBuilder is 1024px x 768px which is usually a good compromise for most web galleries.
However, if your target audience is likely to be viewing your galleries on large monitors, you might like to increase these values appropriately.

1,983

(16 replies, posted in Juicebox-Pro Support)

thanks as ever for the useful reply

You're welcome.

I've dabbled a bit with image filters in Java and basically, the process is concerned with only pixels.
The output image is the result of the source image pixels being run through a kernel (a convolution matrix or mask).
The metadata does not even feature in the equation.

I do not know for sure but it sounds like the same concept is being used within JuiceboxBuilder when an image is resized.
A new image is built up using the source image pixels (and the original metadata is left behind).

Anyway, I appreciate you posting in the Feature Requests forum thread.
It is certainly the best place for all ideas.

1,984

(1 replies, posted in Juicebox-Pro Support)

We have a video on YouTube entitled How to Build a Web Image Gallery in 5 Minutes which you might find useful.

Also, instructions for embedding a Juicebox gallery in a web page can be found in the Embedding Guide.

If you want to embed multiple galleries throughout your site, then I would recommend using the baseUrl method of embedding documented here.
Essentially, once you have created a gallery with JuiceboxBuilder, you would upload the entire gallery folder (not just the contents) to your web server and paste the baseUrl embedding code into your web page where you want the gallery to appear.
You can upload the gallery folder to anywhere on your web server as long as the two paths in the embedding code (the path to the 'juicebox.js' file and the baseUrl itself, pointing towards the galley folder) are correct.
Keeping each gallery as a self-contained entity (each gallery in its own folder) should help to keep things organized on your server.

Also, you can have all galleries throughout your site share a single 'jbcore' folder (rather than have each gallery use its own 'jbcore' folder). Please see here for details.
This has the added advantage of being able to upgrade all galleries at once (when a new version of Juicebox is released) by replacing just one 'jbcore' folder on your site.

If you use the baseUrl method of embedding and have all your galleries share a single 'jbcore' folder, then you could paste the baseUrl embedding code into your template.
As long as the path to the 'juicebox.js' file is correct in the embedding code, the only thing that would need to be changed for each gallery is the baseUrl itself (the path to each gallery folder).

If you are looking for an automated solution to creating and listing multiple galleries, then you might be interested in another one of our products - Showkase.

Showkase is a PHP web application which allows you to create a complete portfolio web site (integrating multiple galleries) online.
Showkase has full support for Juicebox-Pro (and SimpleViewer-Pro) galleries and the galleries can be created within the application itself in a web browser interface (or created with JuiceboxBuilder and imported).

You can create Gallery Index pages and have as many galleries listed on each Gallery Index page as you wish.
Each gallery is represented by a thumbnail image with the gallery title displayed below and the gallery is opened when the user clicks on the image.
Demo sites created with Showkase can be found here and a sample Gallery Index page can be found here.

Showkase can also create non-gallery pages (About, Basic and Contact pages) where you can add information about yourself (or any other content you like).
All of this is done automatically within the Showkase interface without the need for any manual coding at all.

Showkase can be purchased as Showkase-Standard (which comes with Juicebox-Lite and SimpleViewer-Standard, the free versions) or Showkase-Pro (which comes with Juicebox-Pro and SimpleViewer-Pro).
The only difference between Showkase-Standard and Showkase-Pro is the bundled viewers.

More information on the differences between Juicebox and Showkase can be found in this forum post.

I hope you find this information useful.

1,985

(3 replies, posted in Juicebox-Lite Support)

That's great! Thank you for letting me know.

1,986

(3 replies, posted in Juicebox-Lite Support)

It looks like the problem is that your gallery is loaded as soon as the main web page is loaded but before the gallery's parent container is visible on the page (which happens only when the T-Shirts link is clicked).
Your gallery's dimensions are 100% x 100% (100% of the size of the parent container) and, when the page is initially loaded, the gallery's parent container has zero size (it does not yet exist on the web page) and, consequently, the gallery also has zero size.
You should notice that if you resize your browser window after the gallery has loaded, the gallery elements should snap into place correctly (now that the gallery's parent container exists and Juicebox can work out what its actual size should be 100% of).

Solutions to this problem would be:
(1) Give your gallery fixed pixel dimensions rather than percentages (such as 800px x 600px). This should work but your gallery would become a fixed size and would no longer be responsive.
... or:
(2) Load the gallery only after the T-Shirts link is clicked.
You could put your gallery's embedding code into a JavaScript function and then run the function when the link is clicked (after the gallery's parent container is visible on the page).

For example, you could change:

<!--START JUICEBOX EMBED-->
<script src="juicebox_gallery_tshirt/jbcore/juicebox.js"></script>
<script>
new juicebox({
 baseUrl : 'juicebox_gallery_tshirt/',
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%", 
backgroundColor: "rgba(34,34,34,1)"
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

... to:

<!--START JUICEBOX EMBED-->
<script src="juicebox_gallery_tshirt/jbcore/juicebox.js"></script>
<script>
    function loadGallery() {
        new juicebox({
            baseUrl: "juicebox_gallery_tshirt/",
            containerId: "juicebox-container",
            galleryWidth: "100%",
            galleryHeight: "100%", 
            backgroundColor: "rgba(34,34,34,1)"
        });
    }
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

... and then add a JavaScript click handler to run the loadGallery() function when the T-Shirt link is clicked.
It looks like this is the link to your T-Shirts modal:

<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">

You could try changing it to:

<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal" onclick="loadGallery(); return true;">

Hopefully this will help.

You're welcome!
I'm sure you'd like Juicebox-Pro! ;)
There are many benefits over the Lite verson. If you're interested, please see the comparison chart on the download page for details.

By default, Juicebox has a gradient caption background. It is dark at the bottom and transparent at the top.
If you were to add a white image to your gallery, you should see this gradient clearly.

The problem is that Adobe AIR's integrated browser which JuiceboxBuilder uses for the live preview is unable to render all elements accurately (for example thumbnail frames, drop-shadows and gradients) so you see just a solid caption background.
This is noted in the Known Issues section of the JuiceboxBuilder User Guide.
Your own browser (Internet Explorer in your screenshot) is displaying the gallery accurately.

You can change the caption background via the captionBackColor and captionBackTopColor configuration options.
Please see the Caption Options section of the Config Options page for details.
If you want to remove the gradient, just make sure that captionBackColor and captionBackTopColor are both set to the same value.

Please note that captionBackColor and captionBackTopColor are Juicebox-Pro options only and are not supported by Juicebox-Lite.

When you go directly to the URL of an image on your web server in a browser (such as the URLs you posted above), you are taking Juicebox out of the equation. If the browser cannot load the image, then the problem is likely to be one of three things:
(1) a web server problem
(2) an internet connection problem
(3) a problem with the image itself on the server

As I can see the problem for myself (your 'dragon.jpg' image is only 515KB but took over a minute to load), we can rule out your internet connection as being the problem.

Also, as the image did eventually load without errors, it looks like there is no problem with the actual image file on your server (it does not appear to be corrupt).

This leaves the web server itself as the most likely cause of the problem.

I would contact your web host and ask them if they are currently experiencing any issues which might be contributing to your problem. Also, ask them directly why your images are taking so long to load. They should hopefully be able to help further.

The ERR_CONTENT_LENGTH_MISMATCH message you are getting might be due to the fact that your browser is timing out whilst trying to load the image (rather than suggesting that there is a problem with the image itself).

Incidentally, if I try to go to what I expect might be your home page (http://www.kleibography.com), I get the following message:

Your access to this service has been temporarily limited. Please try again in a few minutes. (HTTP response code 503)

This message looks to have been generated by Wordfence firewall.
I don't know if the two issues are related but you could try temporarily disabling your Wordfence firewall to see if this makes a difference.

1,990

(3 replies, posted in Juicebox-Lite Support)

Thank you for the link to your website.

I see that your website is essentially a single page site (as far as a visitor to your site is concerned).
The browser never leaves the main page and a selected gallery page is loaded into a frame on demand.

If possible, I would recommend embedding a gallery directly into a web page rather than using a frame (or an iframe) as there are certain drawbacks to using frames (such as the inability to expand a gallery to fill the browser window). Please see 2) Using an iframe for details.

I'm not sure that there's going to be a quick and easy way to convert all your current galleries to Juicebox ones.
There are no similarities between the structure of your current galleries and Juicebox galleries and there is no direct migration path.

There is an added complication that your current gallery pages also include information about the selected iris variety so you wouldn't be able to just swap your existing gallery pages for Juicebox ones (unless you intend to incorporate all the text into your Juicebox galleries as image captions).

I'm not quite sure what I would do if I were in your position. Whatever you do, I think you'll probably have a good deal of work ahead.
I might try to incorporate the text accompanying each gallery into the gallery itself as an image caption.
I might then use JavaScript code to load the selected gallery into a container on your main page, replacing the frame.

This brings us to the structure of your galleries and site.
If you are creating all your Galleries with JuiceboxBuilder-Pro, then it would be easier to just leave all the galleries in their folders and upload the all the folders to your web server. There would be no need to change any paths in the 'config.xml' files and editing or updating galleries would be a very easy process.
You could then load the galleries into your main page using the baseUrl switching method. Please see 'Switching between Multiple Galleries using JavaScript' in the Embedding Multiple Galleries support section for details.

If you really want to keep all your images in a single folder, then editing all the 'config.xml' files does not need to be a time consuming task.
With a text editor such as Notepad++, you can edit multiple files at once so you could open all your 'config.xml' files in the editor and a search and replace action could be applied to them all. As all your images (and thumbnails) are all in the same folder, the path to the images (the prefix you would have to add to all your imageURL and thumbUrl entries) would be the same so editing all your files should be quite quick and easy with just a couple of search and replace actions.
However, I'm not sure there would be any advantage to leaving all the images in your 'irises' folder and there would certainly be benefits to using the default gallery structure (no need to edit any files and easy to maintain individual galleries).

If you are looking for an automated solution to creating and listing multiple galleries, then you might be interested in another one of our products - Showkase.

Showkase is a PHP web application which allows you to create a complete portfolio web site (integrating multiple galleries) online.
Showkase has full support for Juicebox-Pro (and SimpleViewer-Pro) galleries and the galleries can be created within the application itself in a web browser interface (or created with JuiceboxBuilder and imported).

You can create Gallery Index pages and have as many galleries listed on each Gallery Index page as you wish.
Each gallery is represented by a thumbnail image with the gallery title displayed below and the gallery is opened when the user clicks on the image.
Demo sites created with Showkase can be found here and a sample Gallery Index page can be found here.

Showkase can also create non-gallery pages (About, Basic and Contact pages) where you can add information about yourself (or any other content you like).
All of this is done automatically within the Showkase interface without the need for any manual coding at all.

Showkase can be purchased as Showkase-Standard (which comes with Juicebox-Lite and SimpleViewer-Standard, the free versions) or Showkase-Pro (which comes with Juicebox-Pro and SimpleViewer-Pro).
The only difference between Showkase-Standard and Showkase-Pro is the bundled viewers.

However, Showkase does not have any built-in ability search functionality (like your current web site has) and you might find that listing a large number of galleries on each gallery index page is not an ideal solution for you.

I'm really just thinking out loud and letting you know of a few alternatives that you might like to consider.

1,991

(16 replies, posted in Juicebox-Pro Support)

We're glad you like the auto-hide thumbs!

With regard to the metadata embedded into source images, I would recommend that you post your suggestion in the Feature Requests forum thread (as you have done with your other suggestions). This keeps all the ideas together and ensures that they are not overlooked by the developers.

I expect that the problem is not that JuiceboxBuilder-Pro intentionally strips out the metadata but that in resizing an image, a new image is created from the original image's pixels (using a suitable algorithm) and the metadata is not actually part of the process. It would probably be necessary to extract all metadata from the source image, store it somewhere temporarily and embed it into the resized image. With all the different data formats available (e.g. EXIF, IPTC, XMP, ICC) and all their possible values, this is likely to be quite a complex task.

I realise that this does not help but it might shed some light on what is happening. As far as I am aware, JuiceboxBuilder does not have a specific method to remove metadata on purpose. The non-retention of metadata is likely to be a side-effect of resizing images the way that JuiceboxBuilder does.

You could always process the images for your gallery in an imaging program (such as Adobe Photoshop) prior to feeding them to JuiceboxBuilder and deselect the 'Resize Images' checkbox on the 'Images' tab. JuiceboxBuilder will then just copy the images across to the gallery's 'images' folder (complete with any metadata that they may have embedded within them) without processing them at all.

1,992

(3 replies, posted in Juicebox-Lite Support)

Ordinarily, if you want to have 1,000 different galleries on your web site, then you will have 1,000 gallery folders to deal with.

You could have all your images stored in a single folder on your server (as you currently do) but you would need to manually adjust the paths to the images in the gallery configuration files as JuiceboxBuilder would have no knowledge of the fact that you want to store your images in a custom location when you create your galleries.
Even using a global search and replace action in a capable text editor, this would take some time to do for 1,000 galleries.

It would be easier to keep each gallery in its own folder. It helps to keeps things organized on your server and you can just swap out an entire gallery folder if you want to update a gallery in the future.

Perhaps the most efficient way to do what you are looking to achieve would be to use a Flickr account as your source of images and tag your images accordingly.
Each gallery could then be configured to display only certain tagged images (using the flickrUserName and flickrTags options).

You should be able to tag images in bulk on Flickr so it might not take too long to set up.

You can then have all your galleries share a single 'jbcore' folder (rather than having one per gallery) to minimize the upload.
This has the added advantage that when a new version of Juicebox is released, you need to update just a single 'jbcore' folder on your server (rather than 1,000). Please see the Using an External jbcore Folder support section for details.

You can simplify things further by having all your galleries share a single dummy configuration file.
All galleries need to have a 'config.xml' file (even if its content is not used) but you could upload just one for all your galleries to share (all galleries would point towards the same 'config.xml' file via the configUrl option) and you could set all your configuration options in the embedding code (in your HTML pages). Please see the Setting Config Options section.

Now, with your images hosted and tagged on Flickr and with a single 'jbcore' folder and 'config.xml' file on your server, all you would need for each galley is unique embedding code in its HTML page.
For example, the embedding code for one gallery might look something like this:

<!--START JUICEBOX EMBED-->
<script src="path_to_shared_jbcore_folder/jbcore/juicebox.js"></script>
<script>
    new juicebox({
        containerId: "juicebox-container",
        galleryWidth: "100%",
        galleryHeight: "600",
        backgroundColor: "#222222",
        configUrl: "path_to_shared_configuration_file/config.xml",
        useFlickr: "TRUE",
        flickrUserName: "your_flickr_username",
        flickrTags: "iris_number_seven"
    });
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

Alternatively, you could maybe have just one gallery and have its content change dynamically.
You could perhaps have a drop-down menu of all your iris varieties. When a user selects one, you could run a JavaScript function to load or reload the gallery with the chosen subject (setting the flickrTags option dynamically).
Take a look at this Lite Flickr demo gallery to see something similar in action. You can view the source of the web page in a browser and copy or modify the code to suit your own needs.
(The demo has a text box to allow any Flickr tags to be entered but, as your scenario has a known collection of tags, you could present the user with a drop-down list of existing tags to choose from.)

If 1,000 items in a drop down list is too many, then you could maybe have a few subheadings and split the idea into a few galleries (each with 100 or so drop-down entries).

When an iris variety is selected, the JavaScript function could do more that just reload a gallery if you wanted it to.
It could change or display other content on the web page. You could maybe have a synopsis of the chosen iris variety below the gallery which could change when the gallery is reloaded. Knowledge of JavaScript would be required but it could prove to be quite a powerful solution.

I hope this gives you some food for thought.

1,993

(3 replies, posted in Juicebox-Pro Support)

Yes, you can certainly replace an embedded AutoViewer gallery in a web page with a Juicebox gallery (or any other content, for that matter).
Just remove the AutoViewer embedding code from your web page (and delete your AutoViewer gallery files from your web server) and follow the instructions in the Juicebox Embedding Guide.

There are essentially two ways to embed a gallery into a web page:
(1) The regular way
(2) The baseUrl method

Using the regular way, you would first create a gallery with JuiceboxBuilder-Pro and save it to a folder. I recommend saving it to a new empty folder.
You would then copy the embedding code presented on JuiceboxBuilder-Pro's 'Publish' tab into your web page where you want the gallery to appear.
You would also copy the contents of the gallery folder (not the actual folder itself) to the same directory as the web page containing the embedding code.

The only difference in using the baseUrl method is that you would be able to upload the complete gallery folder (not just the contents) to anywhere on your web server.
All you then have to do is make sure that the two paths in the baseUrl embedding code (the path to the 'juicebox.js' file and the baseUrl itself, pointing towards the gallery folder) are correct.

Keeping the gallery files within the gallery folder should help to keep things organized on your web server and also makes life easier if you want to update the gallery in the future (as you would just have to replace the complete gallery folder on your web server).

I hope this helps.

1,994

(7 replies, posted in Juicebox-Pro Support)

I don't succeed in sorting them by date-taken-asc.

Maybe this FAQ will help in sorting your Flickr images:
How do I change the order of images from Flickr?

1,995

(1 replies, posted in Juicebox-Pro Support)

The default value for the flickrImageSize configuration option is LARGE.
Please see the Flickr Pro Options here.

If there is no LARGE image available, Juicebox will use the next size down (MEDIUM).
However, Juicebox does not display images smaller than MEDIUM and the problem is that your small images do not have a LARGE or MEDIUM size.

You can check which sizes are available for any given image by entering the Photo Id into the flickr.photos.getSizes Flickr API Explorer: https://www.flickr.com/services/api/exp … s.getSizes

For example, your 'DrVinny_100.jpg' image (100px x 100px) has only SQUARE, THUMBNAIL and ORIGINAL sizes (no MEDIUM or LARGE).

You could set either set flickrImageSize to ORIGINAL or ensure that your images have a MEDIUM version (at least 500px on the longest size).

1,996

(7 replies, posted in Juicebox-Pro Support)

This is certainly a problem related directly to Google+ (rather than Juicebox) and you might have better luck posting in a Google+ support forum.
However, it looks like Google are slowly decommissioning Picasa Web functionality.
As a test, I just created a new gallery under Google+ and although it appears in my Picasa RSS feed (so it appears to be public), its Google Album Id does not seems to be working in the Picasa Web Album API (and, consequently, the album cannot be displayed by WP-Juicbox).
Only Google really know what functionality they provide and there seems to be little definitive information about this subject on the web. (If you do a web search for 'make google photos album public' you'll find a few forum threads relating to this subject but it's as much information as I've found.)
The best information available is perhaps experimental evidence gained from your own findings and my own tests.
It looks like it is no longer possible to change the accessibility (private vs public) of a Picasa Web Album (although I cannot be certain about this, hence my suggestion to post your query in a Google+ forum) or to use the Picasa Web Album API in conjunction with a new (post-Picasa) Google+ Album Id.
Unfortunately, there is nothing that we can do to change this and, as far as I am aware, there is no workaround (other than to use a different platform to store and organise your images such as Flickr).

1,997

(3 replies, posted in Juicebox-Pro Support)

No problem.
You're welcome!

1,998

(7 replies, posted in Juicebox-Pro Support)

You're welcome!

1,999

(3 replies, posted in Juicebox-Pro Support)

I'm not sure exactly what you are asking.

If you are asking if it is possible for Juicebox to replicate an AutoViewer gallery (with portions of the previous and next images visible), then this is not possible.

However, if you are looking to simply replace an AutoViewer gallery in a web page with a Juicebox gallery, then this is certainly possible.
All you would need to do it replace the AutoViewer embedding code in your web page with the Juicebox embedding code (and make sure that the Juicebox files are in the correct location on your web server).
Instructions for embedding a Juicebox gallery in a web page can be found here.

If you are looking to convert an AutoViewer gallery into a Juicebox gallery, then this would not be quite so easy.
AutoViewer and Juicebox have different sets of configuration options and their XML files have different formats and use different tags. Also, there are other differences which would make a conversion difficult (such as the face that AutoViewer does not use thumbnails).
It would be easier to take the images from an AutoViewer gallery and use JuiceboxBuilder to create a new Juicebox gallery.
It would be much quicker that trying to manually convert an AutoViewer gallery to Juicebox.

I hope this helps.

2,000

(3 replies, posted in Juicebox-Pro Support)

You can rename your 'config.xml' file if you like and then use the configUrl configuration option in your gallery's embedding code to point towards it.
Please see the Embed Options here.
Sample embedding code might look something like this:

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