Archived topic
caption for featured images (only for posts)
7 replies · Started by ch1800 on April 30, 2022
Hello,
Is there any option or snippet to display a caption for featured images in single posts?
Only for posts and only when a caption exists for the given image.
Thanks.
Hi there,
see my reply here:
https://generatepress.com/forums/topic/add-featured-image-caption-via-elements/#post-1757071
Great, many thanks!
You're welcome
... in fact, I still have a problem with long captions like this one on mobile screens as it keeps the text on a single line instead of breaking into 2 lines.
Change this CSS:
.featured-image .wp-caption {
padding-top: 15px;
font-size: 85%;
font-style: italic;
}
to this:
.featured-image .wp-caption {
padding-top: 15px;
font-size: 85%;
font-style: italic;
line-height: 1.5;
}
Thank you very much again!
No problem :)