Page 1 of 1

caption overlay - can anybody help me getting rid of bold types here?

Posted: 17 Feb 2021, 11:35
by ed_f
I want hover captions like here.

but here and here they are bold - and with extensive search and try & error I still find no way to change that.

Re: caption overlay - can anybody help me getting rid of bold types here?

Posted: 17 Feb 2021, 22:30
by mjau-mjau
The simple explanation here is that in the first link, you are displaying image DESCRIPTION while in the two following links you are displaying image TITLE. Titles are bold, while descriptions are normal, so that we normally achieve something like this:

Some short title
Long description here lorem ipsum. Long description here lorem ipsum. 

So the first question, should you not be consistent with using titles or descriptions or both? If you simply want to override and remove bold, you can add this to Settings > Custom > Custom CSS:
Code
.images figcaption .title {
    font-weight: normal;
}

Re: caption overlay - can anybody help me getting rid of bold types here?

Posted: 18 Feb 2021, 12:23
by ed_f
thanks a lot! if someone doesn't KNOW that it is almost impossible to find out. I now use your CSS.