Search…

X3 Photo Gallery Support Forums

Search…
 
ed_f
Experienced
Topic Author
Posts: 113
Joined: 20 Dec 2020, 11:24

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

17 Feb 2021, 11:35

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.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

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

17 Feb 2021, 22:30

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;
}
 
ed_f
Experienced
Topic Author
Posts: 113
Joined: 20 Dec 2020, 11:24

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

18 Feb 2021, 12:23

thanks a lot! if someone doesn't KNOW that it is almost impossible to find out. I now use your CSS.