> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.unicornplatform.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# To hide footer and navigation

This guide will show you how to hide footer and/or navigation bar with a bit of custom code.

## Hiding navigation bar

#### Step 1/2

Copy this code:

```
<style>
.nav-02 {
	display: none;
}
</style>
```

#### Step 2/2

If you wish to hide the navigation throughout the whole website, paste the code into your **Settings** -> **General settings** -> **Global <body> HTML code**
****
![](https://storage.crisp.chat/users/helpdesk/website/-/7/e/7/8/7e782a40c0560c00/image_1oepb05.png =600x600) 

If you wish to hide it on specific page, go to the **Page settings** and and paste following custom code in the **Custom <head> code** section

![](https://storage.crisp.chat/users/helpdesk/website/-/7/e/7/8/7e782a40c0560c00/image_5jju5s.png =600x600)

## Hiding footer

#### Step 1/2

Copy this code:

```
<style>
.footer-02, .footer-04 {
	display: none;
}
</style>
```

If you wish to hide the footer throughout the whole website, paste the code into your **Settings** -> **General settings** -> **Global <body> HTML code**

![](https://storage.crisp.chat/users/helpdesk/website/-/7/e/7/8/7e782a40c0560c00/image_1jztj3v.png =600x600)

If you wish to hide it on specific page, go to the **Page settings** and and paste following custom code in the **Custom <head> code** section

![](https://storage.crisp.chat/users/helpdesk/website/-/7/e/7/8/7e782a40c0560c00/image_1f24xv7.png =600x600)

That's it 🙂