Portfolio : remove featured image only in product page

Hello,
I would like to know if it could be possible for each portfolio’s item to remove the featured image only in the portfolio’s page and not in the sorting page.

i’ve tried :

.has-post-thumbnail .entry-featured {
    display: none;
}

or

.entry-thumb img {
    display: none;
}

But it removes image on both pages.

Hi There,

Thanks for writing in!

Please update your CSS with this.

.single-x-portfolio .entry-featured {
display: none;
}

Hope this helps!

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Thanks.

Perfect, thx you ! =)

You’re welcome.

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