Remove page titles from portfolio projects
- The topic ‘Remove page titles from portfolio projects’ is closed to new replies.
Need help? Check out our Support site, then
Hi, I have featured images set up for my portfolio projects, but the page titles are covering them up and it looks horrible. Can’t figure out how to only eliminate titles on those pages. Thanks.
The blog I need help with is: (visible only to logged in users)
It looks like you got this figured out by hiding the titles with CSS. Is this correct?
I got desperate and removed all titles in the header area throughout the site using this in the Custom CSS:
.intro-title {display: none;}
But I want to be able to target specific pages, and leave it as default for the rest. I’ve tried putting #post-ID at the front of that code (where “ID” is the 4-digit number for the post), but it doesn’t work. Not sure if it’s because it’s a portfolio project and somehow that changes the way it is referenced. I appreciate your help. Great theme. Thanks!
If you’re looking to remove the intro titles on only single portfolio project pages, you can do that using the following CSS:
.single-jetpack-portfolio .intro-area {
display: none;
}
If you want to do for a specific page, you can target the page by it’s ID like this:
.postid-7843 .intro-area {
display: none;
}
Let me know how that works for you.
Wonderful, thank you!
You’re welcome!