Is there a way to build a page without the navigation bar and header, but have them visible on all other pages?
I attempted to achieve this by adding the following code to the .css file for the specific page:
.navbar-custom {
display: none;
visibility: hidden;
}
header{
display: none;
}
Here is a screenshot of how the current page looks:
https://i.sstatic.net/BphZy.png
Any assistance or guidance would be greatly appreciated. Thank you.