image caption

Posted in: Newspaper
Post count: 12

Hello,

Would it be possible for this theme to show the image caption on hover on blog posts?

Post count: 7909

Hi,

Please try this custom css in Theme Panel > Custom Css, this css code it will hide the caption and when you hover the image it will show it: http://screencast.com/t/xQS9zpF3Kshttp://screencast.com/t/LrpweKK7ZFg

.wp-caption-text {
opacity: 0;
}
.wp-caption:hover .wp-caption-text {
opacity: 1 !important;
}

Hope this helps!

Post count: 12

Thanks! This really helped a lot. I thought it had to do something with function.php.

By the way, it doesn’t seem to work for featured images, but the caption did hide for the featured image. You may look at the website here, which still uses the demo articles:

http://bebgc.ph/2015/05/28/td_d_slug_41/

Post count: 12

I wonder which file do I edit to add the “wp-caption” as figure class after the “td-post-featured-image” div class tag. I think if I add that class, the caption for featured images will appear on hover. 🙂

Post count: 7909

Hi,

Please add also this custom css in Theme Panel > Custom Css for featured image caption: http://screencast.com/t/wZrcRlmI

.td-post-featured-image:hover .wp-caption-text {
opacity: 1 !important;
}

Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.