How to duplicate page maintenance template.
-
I’m making a PWA offline page for my site, how can I duplicate the maintenance page template but making it offline for my PWA page?
I just need fullscreen without a header and footer.
What are the files I need to customize? I’m using a child theme so if there is an update it will not be deleted.
Please help.
Hello,
If you want to just hide the header and footer of a page then you can use the following Custom CSS to hide it.
The below CSS will only hide the header and footer for the page whose id is “11”. You can replace the page id with your page id.
.page-id-11 .whb-header {
display: none;
}
.page-id-11 .footer-container {
display: none;
}
Regards.
Xtemos Studios.