> For the complete documentation index, see [llms.txt](https://atd-dts.gitbook.io/atd-knack-operations/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://atd-dts.gitbook.io/atd-knack-operations/knack-code/functionality/remove-back-link.md).

# Remove Back Links

![Example Back Link](/files/-MaAbQPQFxDnaxd_f2yI)

There may be instances where this back link detracts from the user experience. One such example is within an multi-page application process where a user should not be able to navigate back or maybe a parent page you do not want users to access.

### The JS

None needed 😎

### The CSS

```css
#kn-scene_309 .kn-back-link {
  display: none;
}
```

You may also add multiple scenes separated by commas using CSS and comment the name of the scene.

```css
#kn-scene_309 .kn-back-link,    // Name of Page 1
#kn-scene_310 .kn-back-link,    // Name of Page 2
#kn-scene_311 .kn-back-link     // Name of Page 3
{
  display: none;
}
```

### How to Implement

Adjust the Scene ID and you are set!
