Any way to make a Single Portfolio - in Pro Integrity so it has Single Portfolio fullwidth ( Blank - No Container | No Header ,No Footer), Thanks- Todd
Looking to remove header and footer from certain portfolios and to go full width no container. On a case by case option.
Hi Todd,
It is possible by editing the portfolio template. Though if this is case to case basis, your best bet here is by adjusting it using custom CSS adding it on Theme Options > Global CSS. Look at this sample: https://screencast-o-matic.com/watch/cYV2jZvk9R
.postid-3572 header, .postid-3572 footer {
display: none;
}
.postid-3572 .x-container.width.max {
max-width: none;
width: 100%;
}
The screencast shows you how to inspect it.
The following guide might help you too:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.