I am trying to get a handle on just what the presets are.
The presets are just different combinations of configuration options and JuiceboxBuilder settings (such as gallery and image dimensions).
They are essentially quick ways of replicating some of the demo galleries found here.
You could achieve any preset by starting off with all default settings and changing values in JuiceboxBuilder's interface.
Can you tell me just what Max caption height does?
There is a short description of maxCaptionHeight in the Caption section of the Config Options page.
maxCaptionHeight
The height of the caption area. When captionPosition is set to BELOW_IMAGE, BOTTOM or BELOW_THUMBS, the area uses this value. For OVERLAY captions this value determines the maximum possible height of a caption.
So when captionPosition is set to BELOW_IMAGE, BELOW_THUMBS or BOTTOM, the value of maxCaptionHeight is always used as the actual caption height. When captionPosition is set to OVERLAY or OVERLAY_IMAGE, the value of maxCaptionHeight is used as the maximum caption height (the actual caption height might be smaller if the maximum is not required to display the caption in full).
Is it possible to get more space?
It is not possible to increase the space just at the right-hand side of a gallery (at least not by using the available configuration options) but you could increase the space surrounding all gallery elements by increasing the value of the stagePadding configuration option (in JuiceboxBuilder-Pro's 'Customize -> General section'.
Alternatively, if you just want to add some space to the right-hand side of your gallery, you could wrap the gallery in a parent container, reduce the gallery's width (to perhaps 90%) and make the parent container's background color the same as the gallery.
Here is an example.
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
backgroundColor: 'acc2e3',
containerId: 'juicebox-container',
galleryWidth: '90%',
maxThumbColumns: '3',
maxThumbRows: '3',
thumbsPosition: 'RIGHT'
});
</script>
<div id="parent" style="background-color: #acc2e3; width: 800px;">
<div id="juicebox-container"></div>
</div>
<!--END JUICEBOX EMBED-->
Is there any adjustments that would center the page?
If you want to horizontally center the gallery container within a parent container, then replace:
<div id="juicebox-container"></div>
... with:
<div id="juicebox-container" style="margin: 0 auto;"></div>