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.