Hide the featured image on portfolio page
- The topic ‘Hide the featured image on portfolio page’ is closed to new replies.
Need help? Check out our Support site, then
How can I hide the featured image on the portfolio page?
I tried the css below based on what I could find in web inspector:
.cover .single-liner {
display: none
}
And this typically works on jetpack-portfolio but did not work with Creative Portfolio:
.single-jetpack-portfolio .entry-image {
display: none;
}
The blog I need help with is: (visible only to logged in users)
After more experimentation, it looks like this will make the featured image disappear but I’m not clear on what else it effects:
.cover {
display: none;
}
Hi Leebu,
I don’t see project/portfolio listed here: https://leebutler.photography/projects/
The CSS to hid the Jetpack portfolio on single item would be this:
.single-jetpack-portfolio #single-header.cover {
background-image: none !important;
height: 0px !important;
}
Cheers.
Thanks, always great to get the official CSS!