1 (edited by seb 2017-01-07 10:55:52)

Topic: Caption font size [SOLVED]

How can I change the main image caption or title font size?

Cheers,

Seb

Re: Caption font size [SOLVED]

There are no configuration options available to change the font size of image titles and captions.

However, you can style individual image titles and captions (and also the Gallery Title and Back Button) using HTML formatting as noted in these FAQs:
How do I add HTML formatting to image captions and titles?
How do I add HTML formatting to the Gallery Title or Back Button?

Otherwise, you can change the size of all image titles and/or captions at once using CSS such as:

/* IMAGE TITLE */
.jb-caption .jb-caption-title {
    font-size: 20px !important;
}

/* IMAGE CAPTION */
.jb-caption .jb-caption-desc {
    font-size: 18px !important;
}

/* IMAGE NUMBER */
.jb-cap-frame .jbac-number {
    font-size: 12px !important;
}

You could add this CSS to the end of your gallery's 'jbcore/classic/theme.css' file or wrap it in <style type="text/css"> ... </style> tags and add it to the end of your gallery web page's <head> section.

Re: Caption font size [SOLVED]

This is great - thanks. Can you put this in the options for the next release? Very useful.

Seb

Re: Caption font size [SOLVED]

This is great - thanks.

You're welcome.

Can you put this in the options for the next release?

I'd recommend that you post your suggestion in the Feature Requests forum thread.
This keeps all the ideas together and ensures that they are not overlooked by the developers.
I do not know the likelihood of any suggestions being implemented but this is certainly the best place for all ideas.
Thank you.