Hide featured image of posts and pages

Hello! I would like to hide the featured image on the blog post page. I want only the post title, category, date and author to remain, properly organized and in black, how do I do this?

As for the web pages, I want just the title to remain.

Hi,

Please use these CSS snippets:

.single-post .header-hero {
	background-image: none;
	background: none;
}

.blog .post__image img {
	display: none;
}

Please note that it can require further customization.

​I hope this is helpful to you.

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