I have a site with a branded header and footer. Is there a way to have a page in this site that has no header or footer (no branding) or do I need to create a new site to have a different header/footer? They also do not want any navigation features on the page.
TIA,
DawnP
Sorry, i thought you wanted to remove the header completely. If it's just a case of hiding/showing specific elements in the header based on the page, you could add some logic to show/hide for specific pages?
{% if page.url == "/bob" %}
// wrap around navigation block
{% endif %}
{% if page.url contains "bob" %}
// wrap around navigation block
{% endif %
Or if you have a child page of 'members' for example and any page inside should not have the navigation..
{% if request.url contains "members" %}
// wrap around navigation block
{% endif %
Think you'll find that when you uncheck it it will not include the entries in the Head tag in the rendered page (which includes the bootstrap css etc). So would need to add them into your template - it is probably easier and quicker to alter the Header web template.
Hi @GWham1
I created a new web template and page template and unchecked the 'Use Website Header and Footer' checkbox. It worked to remove the header and footer but it also lost all formatting. I have attached the design view of the page and then the preview of it to show you what I mean. How do I fix the formatting?
As @Fubar said, the most simple way is to create a new 'web template' and 'page template' and assign the page template to your web-page. Ensure you uncheck the "Use Website Header and Footer" 👍
There are a couple of different approaches to this
Depending on exactly what you need one may be a better option than the other.
Fubar
62
Super User 2025 Season 2
Lucas001
48
Super User 2025 Season 2
KevinGador
44
Super User 2025 Season 2