Search…

X3 Photo Gallery Support Forums

Search…
 
BigBobbyD
Experienced
Topic Author
Posts: 31
Joined: 04 Sep 2021, 04:41

Popup Caption Title in All caps

04 Sep 2021, 10:02

Is it possible to get the "Title" on the pop up caption capitalized?  I can achieve this for h1 or h2 using

h2 {
text-transform: uppercase;
}

but cannot seem to find a specific font size declaration for the pop-up caption.

Thank you
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Popup Caption Title in All caps

05 Sep 2021, 01:17

Should be:
Code
.popup-caption-title {
  text-transform: uppercase;
}
Assign from Settings > Custom > Custom CSS.
 
BigBobbyD
Experienced
Topic Author
Posts: 31
Joined: 04 Sep 2021, 04:41

Re: Popup Caption Title in All caps

05 Sep 2021, 02:44

Thank you 
 
BigBobbyD
Experienced
Topic Author
Posts: 31
Joined: 04 Sep 2021, 04:41

Re: Popup Caption Title in All caps

25 Sep 2021, 04:59

I would like to ask one last question pertaining to the possibility of upper case on other text locations,

Can you assist in telling me what the css name is for the description located as option under the gallery pictures?

Thanks in advance
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Popup Caption Title in All caps

25 Sep 2021, 05:12

Description under pictures in gallery layouts? Depends, because there are options caption "overlay" (over the image) and captions that go below each images. In the case of images below, you could probably use something like:
Code
.images .title {
  text-transform: uppercase;
}
If you use browser inspector, you can inspect elements and find out what class(es) to use to select them.
Image
 
BigBobbyD
Experienced
Topic Author
Posts: 31
Joined: 04 Sep 2021, 04:41

Re: Popup Caption Title in All caps

25 Sep 2021, 07:39

That is exactly what I needed..thanks a million :thumbsup: