Featured Image Disappears on Blog Page

My homepage used to be the most recent blog posts, which I’ve switched with a new page created with Cornerstone.

Now I have a blog page at https://ohiofestivals.net/blog and I’ve noticed that the Featured Image for all posts has disappeared (they used to be on the left of the preview).

What do I need to do to bring them back?

Thanks!

Hello Kristian,

Thanks for writing in!

I see following code added to the website which is why featured image is not showing:

.x-main.left .hentry .entry-featured {
    display: none !important;
}

Please remove above code and doing so will fix the problem. Please make sure to clear cache so that the latest resources are at use.

Thanks.

Thanks! So that did fix the problem but brought back an old problem.

Now, at the beginning of every post and page, the Feature Image is displayed at the top of the post/page.

Example - https://ohiofestivals.net/mcconnells-mill-heritage-portersville/

Can I add code to hide the feature image within the actual page/post but keep it visible in the preview (along blog page)?

Thanks!

I’ve just added

.single-post .has-post-thumbnail .entry-featured,
.single-post .entry-header {
display: none;
}

And this did take care of the posts.

Is there something similar for the pages as well? example - https://ohiofestivals.net/illinois-festivals/

Note: I do like the featured image at the very top (centered). I just don’t want the huge featured image showing under the title of the page.

Thanks!

Problem Resolved - I found an old support ticket of mine that didn’t work before. It worked this time.

I added

.page .x-main .entry-featured {
display: none !important;
}

Glad to hear that. For future support tickets I request you to not post new replies as that pushes ticket back into the queue which slows the response time. If you need to add new information, please edit the ticket and add a title like Edit 1 so we know new information is added at the same time it won’t affect the response time.

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