How to hide feature image on learn mechanical?

I am using ICON, I also used css }
.single-post .x-main.left .hentry .entry-featured,
.page .x-main .entry-featured {
display: none;
}
But in this stack is not working
Here is the url: https://learnmechanical.com/boiler-mountings-accessories/

Hi Saswata,

Thank you for reaching out to us. Please replace your code with the following one:

.single-post .entry-featured {
    display: none;
}

I also noticed the content of your site is being served by the cache, make sure to purge your plugin’s cache entirely after adding the code so you can see the changes on the front-end right away.

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

Hey Saswata,

To resize the featured images on your category archive pages, you can add the following code as well:

@media screen and (min-width: 980px) {
  .category .entry-featured {
    width: 50%;
    margin: 0 auto;
  }
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

1 Like

thanks man

You’re welcome.

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