Featured Image CSS not working

Hi there,

I have tried a few different CSS options found on other topics, but nothing is working for me…
I am wanting to either completly remove the featured images from POSTS once you open them or get them to be much smaller once opened.
https://rrthevillage.wpengine.com/adults/ (bottom of page using GRID)

I have this CSS in the Global CSS:
.single-post .entry-title:before,
.single-post .entry-featured {
display:none;
}

Please help. :slight_smile:

Hello @tkcostello,

Thanks for writing in!

Your custom CSS code is correct. The problem is that you have inserted a broken CSS code which affected the rest of your custom CSS code. You have inserted this:

body.tax-wpfc_sermon_series .entry-header,body.tax-wpfc_sermon_series .p-meta,body.tax-wpfc_service_type .entry-header,body.tax-wpfc_service_type .p-meta,body.tax-wpfc_sermon_topics .entry-header,body.tax-wpfc_sermon_topics .p-meta,body.tax-wpfc_bible_book .entry-header,body.tax-wpfc_bible_book .p-meta,body.tax-wpfc_preacher .entry-header,body.tax-wpfc_preacher .p-meta{
    display:none;

It is unclosed and missing the closing curly } bracket. Please have your code updated and use this:

body.tax-wpfc_sermon_series .entry-header,body.tax-wpfc_sermon_series .p-meta,body.tax-wpfc_service_type .entry-header,body.tax-wpfc_service_type .p-meta,body.tax-wpfc_sermon_topics .entry-header,body.tax-wpfc_sermon_topics .p-meta,body.tax-wpfc_bible_book .entry-header,body.tax-wpfc_bible_book .p-meta,body.tax-wpfc_preacher .entry-header,body.tax-wpfc_preacher .p-meta{
    display:none;
}

We would love to know if this has worked for you. Thank you.

Perfect! THank you

Hi @tkcostello,

You’re welcome and it’s our pleasure to help you. If you have any other concerns, feel free to reach us.

Thank you.

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