1 (edited by md.michel 2018-09-10 06:46:06)

Topic: Gallery index page thumbs title [SOLVED]

My gallery index page has 6 thumbs and their titles above.
How change the font-size of these titles?
Sorry, but I don't find where in the style.css or what line to add in the custom.css.

Re: Gallery index page thumbs title [SOLVED]

Try adding the following CSS to your site's '_themes/kosel/css/custom.css' file (changing the actual font-size value as necessary).

.type-galleryindex .thumbs figcaption a {
    font-size: 24px;
}

This should change the font-size for the Gallery Index Page thumbnail text.

If you have a lot of text to display and find that it is being truncated (and not all displayed), then you might like to try using the following CSS instead (which will leave more room between rows of thumbnails for text to wrap).

.type-galleryindex .thumbs figcaption {
    font-size: 24px;
}

There is no need to re-publish your site after making this change but you might need to clear your browser's cache before reloading your Gallery Index Page in order to see this change.

Re: Gallery index page thumbs title [SOLVED]

Thanks again for your quickness to answer. Each time, it' very detailed and precise.
Perfect, now thumbs figcaption are as I wanted.

Re: Gallery index page thumbs title [SOLVED]

No problem!
I'm glad my suggestion worked for you. Thank for you letting me know!