Featured Images on Different Video Types

I was able to turn off the featured images site wide using the CSS code provided, Turns out though, that I need to have the featured image show for my video posts. What is the CSS code that will only have the featured image show on video posts, and have it not show on any other post or page?

Site: www.yourbizrules.com

Hey Leslie,

Did you hide the Entry Featured using this code?

.entry-featured {
    display: none;
}

If so, please add this code after that code as well so you’ll see the featured video while hiding the featured image for all of the post formats.

.format-video .entry-featured {
    display: block;
}

Hope that helps.

1 Like

Perfectly - thank you!

You’re welcome, Leslie.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.