Hi.
Surprised there is no mention about using html symbols in the titles and captions, to change font format and to add links (for example to go to the next gallery).
The use of HTML in image titles and captions is mentioned in this FAQ (admittedly, links aren't mentioned, though):
How do I add HTML formatting to image captions and titles?
There is one problem I cannot solve: the space in the images between title and caption is quite large...
You could try using CSS to change the margin for either the title or the caption.
Try adding something like the following into your embedding page's <head> section.
Either:
<style>
/* IMAGE TITLE */
.jb-caption .jb-caption-title {
margin-bottom: -10px !important;
}
</style>
... or:
<style>
/* IMAGE CAPTION */
.jb-caption .jb-caption-desc {
margin-top: -10px !important;
}
</style>
I hope this helps.