Home › Forums › Latest › Removing images at top of posts › Reply To: Removing images at top of posts
January 10, 2018 at 12:03 pm
#3441
Yazmin
Keymaster
It is the design of the theme that the featured image is displayed both on post archives (blog, categories, search results etc) and also on the single post view.
So to make single posts with an image look similar to posts without an image, please paste this CSS into Appearance > Customize > Additional CSS:
.entry-header.singular.with-image .title-wrapper {
margin-top: 0;
height: auto;
background-image: none !important;
}
.entry-header.singular.with-image .entry-title {
position: relative;
background: transparent;
color: #2d3139;
}