Page 1 of 1

Popup Caption Title in All caps

Posted: 04 Sep 2021, 10:02
by BigBobbyD
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

Re: Popup Caption Title in All caps

Posted: 05 Sep 2021, 01:17
by mjau-mjau
Should be:
Code
.popup-caption-title {
  text-transform: uppercase;
}
Assign from Settings > Custom > Custom CSS.

Re: Popup Caption Title in All caps

Posted: 05 Sep 2021, 02:44
by BigBobbyD
Thank you 

Re: Popup Caption Title in All caps

Posted: 25 Sep 2021, 04:59
by BigBobbyD
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

Re: Popup Caption Title in All caps

Posted: 25 Sep 2021, 05:12
by mjau-mjau
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

Re: Popup Caption Title in All caps

Posted: 25 Sep 2021, 07:39
by BigBobbyD
That is exactly what I needed..thanks a million :thumbsup: