Hi there,
Would you mind clarifying what you are trying to do?
Let’s start from the beginning. Please remove all the code suggested on this thread.
if you want to get rid of the feature image in the blog page and the single post page, use this code:
.entry-featured {
display: none;
}
The code above will remove the feature image and the borders as well.
If you want to resize the image on the blog page but remove it in the single post page, use these codes:
.entry-featured {
display: inline-block;
margin: 0 auto;
}
.entry-thumb img {
min-width: 1px;
}
.single-post .entry-featured {
display: none;
}
In case were missing something, please specify it so that we will know exactly what you are trying to achieve.
Thank you.