ying
(@yingscarlett)
Do you mean the entire header and primary navigation on this page?
https://www.screencast.com/t/IiJUm38jl
Let me know!
@yingscarlett The entire header and primary navigation if it’s possible! If not just the header is fine
ying
(@yingscarlett)
There are two options:
1. Use CSS to hide the header and primary navigation:
.page-id-29 .site-header, .page-id-29 #site-navigation {
display: none;
}
2. Create a specific page template to remove the header and primary navigation:
– (1) Install GP child theme: https://docs.generatepress.com/article/using-child-theme/
– (2) Take a copy of page.php from the parent theme, and paste it to your child theme folder.
– (3) Rename the file as page-29.php .
– (4) Replace its content with this: https://pastebin.com/UyQaqBf9
Let me know if this helps 🙂