Need help removing grey box above blog posts

Hi!

There is a big grey box above my blog post that has an image icon inside it and links to my post. I do not want that showing up above my blog posts, but cannot figure out how to get rid of it.

I’m extremely new to all this, and would greatly appreciate any help someone can give me.

Thanks!

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS


/*remove feature blog image*/
img.attachment-shapely-featured.size-shapely-featured.wp-post-image {
    display: none;
}
/* remove category */
.blog span.shapely-category{
  display:none;
}

Best regards,
Support.

Thanks so much for the help & fast response.

The CSS did get rid of the category listing, but the grey image box is still there.

Any other options?

Thanks!

I found the following code on another post & it seems to have fixed my issue.

/Remove featured image/
.post-content .entry-header {
display: none;
}

Hi, there

Nice, to hear your problem is fixed:)
Now I will now close the topic and mark it as resolved. Feel free to contact us again Thanks!