Hide large featured image in pages and posts but not from portfolio (Integrity)

Hi
I tried this
/* Hide Single Post Featured Image*/
.page .entry-featured,
.single-post .entry-featured {
display: none;
}
but it wipes out all featured images from everywhere.

All I want to do is get rid of the HUGE images that are generated by the featured image in posts and pages.

Thanks!

Hello Lisa,

Please try:

.single-post .entry-featured {
    display: none;
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

hi, thanks but that doesn’t make any difference

HI Lisa,

Please update it to:

.page-template-default .entry-featured,
.single-post .entry-featured {
    display: none;
}

Hope this helps.

genius! that is perfect, thank you so much
and sorry to ask such a basic question, I tried to get it working by myself but failed!

You’re always welcome @lisacole1!

Cheers.

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