On this page, I have it set to be layout portfolio but none of my featured images are showing, please help
Hi Howard,
Thank you for reaching out to us. I checked your portfolio page and there is custom CSS which is hiding the featured image. Please find and remove the following code to resolve the issue (Probably you’ll find the code in the Theme Options > CSS):
.entry-thumb img {
min-width: 100%;
-webkit-transition: opacity 0.75s ease;
transition: opacity 0.75s ease;
display: none!important;
}
Don’t forget to clear all caches including your browser’s cache after removing the code. Let us know how this goes!
Yeah that fixed it but now the pictures are showing on the case studies page.
how would i hide it on there but not on portfolio page
Hi again,
To hide the featured image on a single posts page, you can make use of the following code:
.single-post .has-post-thumbnail .entry-featured {
display: none;
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
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/
Hope this helps!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.