4,901

(496 replies, posted in Juicebox-Pro Support)

@cprblak

In JuiceboxBuilder-Pro, go to the 'Customize -> Color' section and set the 'Opacity' for the shadow that you are trying to remove (whether it is the image, thumb or text shadow) to zero.

4,902

(1 replies, posted in Juicebox-Pro Support)

In theory you can add as much text to a caption as you like (though there is no way to display more than a single line of it within JuiceboxBuilder-Pro).
You might like to edit your gallery's XML file manually in a plain text editor and add the captions this way.

If you wish to include a line break within a caption, use an HTML <br> tag.
For example, in JuiceboxBuilder-Pro, you would enter:

Line 1<br>Line 2

In the gallery's XML file, this would look like:

<caption><![CDATA[Line 1<br>Line 2]]></caption>

4,903

(6 replies, posted in Juicebox-Pro Support)

@Starc12344

As Felix says:

Social sharing support is coming in the next version of Juicebox-Pro. Stay Tuned!

The next version of Juicebox will incorporate sharing via Facebook, Twitter, Google +, Pinterest and Tumblr.
(However, I do not know when it will be released.)

4,904

(1 replies, posted in Juicebox-Pro Support)

Fine adjustments to watermark placement are not available within JuiceboxBuilder-Pro.
You could perhaps introduce a transparent border to your watermark image (in an image manipulation program such as Adobe Photoshop) before feeding it to JuiceboxBuilder-Pro.

4,905

(1 replies, posted in Juicebox-Pro Support)

Juicebox uses only one instance of each configuration option per gallery its value is used in both Small Screen Mode and in Large Screen Mode. It is not possible to set different values for a configuration option for different screen modes.

4,906

(1 replies, posted in Juicebox-Pro Support)

Depending on your browser window's height, Juicebox will display as many rows of thumbnails as possible (up to the maximum number specified via the maxThumbRows configuration option).
In your scenario, there might not be quite enough space available for a 4th row of thumbnails and if you were to increase your browser's height just a little (perhaps by hitting F11 to go fullscreen), then the 4th row will appear.

[Post moved to new thread to keep individual queries separate from each other.]

4,907

(2 replies, posted in Juicebox-Lite Support)

A Juicebox gallery (both Lite and Pro) will dynamically resize with the size of the user's browser window as long as the dimensions of the gallery and all parent containers of the gallery are expressed as percentages.
If there is an absolute pixel value anywhere up the chain, then the gallery's size will be fixed, e.g. 100% x 100% x 800px = 800px.

4,908

(1 replies, posted in Juicebox-Lite Support)

All your gallery files should be on the same domain or subdomain as the HTML page containing the JavaScript embedding code due to the JavaScript same origin policy (which is why the baseURL method of embedding does not work for you).
You could perhaps upload the complete gallery folder to AWS S3 and embed the gallery in a web page using an <iframe>. This will work as the HTML page containing the JavaScript embedding code is actually the gallery's own 'index.html' file (the file loaded into the <iframe>, not the HTML page containing the <iframe> itself). (Please see the notes regarding embedding a Juicebox gallery in an <iframe> here.)
If you have publicly accessible absolute URLs for your images (and can open the images directly in a browser using these URLs), then you should be able to use them as imageURLs and thumbURLs in your gallery's XML file.
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

4,909

(1 replies, posted in Juicebox-Pro Support)

Your gallery is a Juicebox-Lite gallery as can be seen by the presence of the Juicebox badge/link in the bottom right corner of your gallery (which is present in all Juicebox-Lite galleries but not in Juicebox-Pro galleries).
Juicebox-Lite has a limit of 50 images per gallery and does not use Juicebox-Pro configuration options such as enableLooping.

Upgrade your WP-Juicebox plugin from Juicebox-Lite to Juicebox-Pro by following the 'Upgrading to Juicebox-Pro' instructions on this web page and your gallery should function as expected.

4,910

(496 replies, posted in Juicebox-Pro Support)

- fix for Opera and Firefox, they don't play audio (IE: ok, Chrome: ok. Format: mp3, 128kbps, created by AVS Audio Converter)

Please see the Adding Audio section of the Creating Galleries page (and the Audio Options) for details on how to have an audio track play in Firefox.

4,911

(1 replies, posted in Juicebox-Pro Support)

Please take a look at the Troubleshooting FAQs to see if they help (the third one sounds like it might describe your scenario).

If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

4,912

(6 replies, posted in Juicebox-Pro Support)

Here is a forum post where a user has integrated social media sharing into a Juicbeox-Pro gallery which you may find of interest. (The user's gallery does not use Flickr-sourced images, though.)

4,913

(7 replies, posted in Juicebox-Pro Support)

Then it worked but what is best setting?

Only you can decide what the best gallery dimensions would be for your own scenario/web page.

It doesn't scale now with the page

A Juicebox gallery will dynamically scale with the size of the user's browser window only if the dimensions of the gallery and the dimensions of all parent containers are expressed as percentages. If there is a fixed pixel value anywhere up the chain, the gallery's dimension will become fixed, e.g. 100% x 100% x 770px = 770px.

4,914

(7 replies, posted in Juicebox-Pro Support)

and then it like pops into it's own page it seems and my text is gone..

This sounds like the gallery is displaying in its expanded version (as if you have clicked the Expand button on the Button Bar) which will display the gallery fullscreen.
Please post the URL to your web page so that I can take a look.

4,915

(23 replies, posted in Juicebox-Pro Support)

I'm assuming this method will not affect SEO?

This is a valid use of hiding links and text according to this web page.

4,916

(7 replies, posted in Juicebox-Pro Support)

All galleries are embedded, either in a page of their own (like in the gallery's 'index.html' page) or in another web page alongside existing content.
Also, all galleries use a 'theme.css' file.
You can make whatever modifications you like to a gallery's 'theme.css' file and use it for other galleries if you wish.
The themeURL configuration option is simply there to allow you to point towards a different CSS file in a different location (for example if you had a customized theme and wished to share it between multiple galleries without duplicating it).
If you modify a gallery's 'theme.css' file, just be sure to make a back up copy in case it is accidentally overwritten if, for example, you replace the 'jbcore' folder.

4,917

(23 replies, posted in Juicebox-Pro Support)

Try hiding the 'jbseo' <div> in your 'index.php' page using CSS such as either:

#jbseo {
    visibility: hidden;
}

... or:

#jbseo {
    display: none;
}

4,918

(7 replies, posted in Juicebox-Pro Support)

You can use a 'preset' file to store configuration options and then apply them to new galleries.
Please see the Presets section of the JuiceboxBuilder User Guide.

4,919

(2 replies, posted in Juicebox-Pro Support)

This may be caused be a conflict between the CSS on your page and that of the gallery itself.
Check your page's CSS (there are 30 external CSS files listed on your page) for any generalized CSS that the gallery might inherit. Look out for any CSS rules that, for example, apply to all 'img', 'p' or 'div' tags (rather than just specific instances of these tags through use of ids and classes).

4,920

(3 replies, posted in Juicebox-Pro Support)

Try including the CSS in the gallery's own 'jbcore/classic/theme.css' file (rather than the WordPress 'style.css' file) and double-check that you iPhone browser's cache has been completely cleared.
I tried your CSS in a test gallery and viewed it on an iPod Touch and the CSS was clearly being used in the gallery (in Small Screen Mode in Mobile Safari).
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look.

4,921

(7 replies, posted in Juicebox-Pro Support)

What are my options to adjust these parameters.  Is there something I can do so Juicebox.js calculates these to be small numbers.

To remove the padding around the titles and captions, try adding the following CSS to your gallery's 'jbcore/classic/theme.css' file:

.jb-cap-frame .jb-caption {
    padding: 0 !important;
}

Unfortunately, your tool will not allow me place Captions to the Right for Portraits and Under for Landscapes, which would be the ideal solution and provide a better presentation of Portrait slides.

As you are aware, Juicebox does not support positioning captions to the left or right of the main images but I notice that you have suggested this in the Feature Requests thread. Thank you for your suggestion.

how do I find all the PRO settings that I set up in my preset?

The Pro settings in your preset XML file will be the ones that are listed as Pro on the Config Options page. Essentially, this will be everything that is not listed in the Lite section.

what specific syntax do I use to add them?

As noted on the Lightrom Plugin page:

Enter Pro options in the "Juicebox-Pro Options" text area in the Lightroom Plugin interface. Config options should be entered one per line in the format optionName="OPTION_VALUE". Use Ctrl-Enter to add a new line.

Is it as simple as opening my preset .xml file in a text editor, cut the presets and paste them into lightroom?

Almost. Each Pro Option should be entered in the Lightroom "Pro Options" text area on a line of its own. As long as you have upgraded the plugin to Juicebox-Pro by following the instructions on this web page, the Pro Options will take effect in the live preview window as soon as you leave the 'Pro Options' text area.

4,923

(11 replies, posted in Juicebox-Lite Support)

Looking at the dynamically generated XML file for your gallery, the XML declaration is not at the very top of the document (where it should be). Line 1 of the file is blank.
Try viewing the file in a browser to see the error message: http://www.beavanderheijden.nl/site/wp- … llery_id=9
The file is created with the PHP function saveXML() so there should be no blank line before the XML declaration.

The cause may be due to a specific version of PHP. What version of PHP does your web server run and did your web host upgrade its PHP version recently?

The fix is to change line 148 of the 'wp-juicebox/config.php' file to the following:

echo $new_dom_doc->saveXML($new_settings_tag);

This fix will be included in the next version of WP-Juicebox.

4,924

(7 replies, posted in Juicebox-Pro Support)

How do I handle this setting with an embedded gallery in a posting. I bought the pro version, so used the Windows JuiceBuilderPro to configure the gallery.

You would need to change any configuration options (such as imagePadding) in the gallery's own 'config.xml' file (rather than in any WordPress setting).

As far as I am aware I do not have a gallery in WP to apply the pro settings to (maybe I do... how do I find it).

That is correct. If you have embedded a Juicebox gallery into a WordPress post manually, then WP-Juicebox (the Juicebox plugin for WordPress) will know nothing about it.

What is setting these values, extracted via Firebug

These values are calculated and set by the 'juicebox.js' file which is obfuscated and cannot be modified.

What is the best way to put in a formal change request. I have a suggestion to make.

Please post feature requests in this forum thread. It ensures that they will not be overlooked.

While we disagree on how you handle adding images to Galleries,

If the documentation can be improved, that can only be a good thing. I will take a look at the current instructions and see if they can be made clearer.

I am pleased with the quality of the overall response.

That's great to hear. Thank you.

4,925

(1 replies, posted in Juicebox-Pro Support)

To browse inside the 'juicebox.lrwebengine' package, use ctrl-click and select "Show Package Contents".