I’d like to have a cleaner look to the Portfolio pages by removing the header section. On my site the area I am talking about is grey in color directly below the menu and above the main content. It also has the title in it which I’s also like removed as its duplicated in the main body of the content. I’d like this change to effect all portfolio pages current and future.
Thanks,
John
http://itsourlittlestory.org/portfolio/child-abuse-prevention/
I think I figured it out with the following custom css:
/remove portfolio title/
.jetpack-portfolio-template-default section.page-title-section.bg-secondary {
display: none !important;
}
.single-jetpack-portfolio .entry-header {
display: none;
}
However I’d still like to clean up the look further by removing the author section below the main content and picture. Its a rectangle box with the author “iolsadmin”
Thanks
Hello there,
I hope you are doing well today.
You can use the following CSS code to remove the header section by going to Appearance > Customize > Additional CSS and pasting it there.
/*Remove header section*/
.header-callout {
display: none;
}
Best Regards,
Support
Ok, did some searching and found this solution that worked for me"
/hide Portfolio author info/
body.single-jetpack-portfolio .author-bio {
display: none;
}
Hello there,
Nice work finding that solution.
Please feel free to contact us again in the future regarding any other issues.
Best Regards,
Support