# Removing elements from select posts Dawn theme

**URL:** https://forum.ghost.org/t/removing-elements-from-select-posts-dawn-theme/25112
**Category:** Themes
**Created:** [August 23, 2021, 4:05pm UTC](https://forum.ghost.org/t/removing-elements-from-select-posts-dawn-theme/25112 "2021-08-23T16:05:54Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![davidgane](https://sea1.discourse-cdn.com/flex015/user_avatar/forum.ghost.org/davidgane/32/7647_2.png) [@davidgane](https://forum.ghost.org/u/davidgane)
#### Post date: [August 23, 2021, 4:05pm UTC](https://forum.ghost.org/t/removing-elements-from-select-posts-dawn-theme/25112/1 "2021-08-23T16:05:54Z")

</div>

I am wondering about removing two elements from the Dawn theme on specific posts:

1. The Next/Previous arrows at the bottom of the post.
2. The “You might also like…” section at the bottom.

I only need them for specific posts, so I’d like to only insert them in the code injection on each one.

Thank you for your help in advance.

---

<div class="post-metadata">

### Author: ![kose\_mark](https://sea1.discourse-cdn.com/flex015/user_avatar/forum.ghost.org/kose_mark/32/14237_2.png) [@kose\_mark](https://forum.ghost.org/u/kose_mark)
#### Post date: [August 23, 2021, 9:26pm UTC](https://forum.ghost.org/t/removing-elements-from-select-posts-dawn-theme/25112/2 "2021-08-23T21:26:57Z")

</div>

On specific posts, or in general you can add the following to code injection (Site Footer) to hide them. You can use one or both of those sections the way you like. I added comment on top of each to show which one is for what purpose

```auto
<style>
 /* Remove navigation arrows */
 footer .navigation {
     display: none;
    }
    
/* Remove related posts section */ 
 .related-wrapper {
      display: none;
    }
</style>

```

---

<div class="post-metadata">

### Author: ![davidgane](https://sea1.discourse-cdn.com/flex015/user_avatar/forum.ghost.org/davidgane/32/7647_2.png) [@davidgane](https://forum.ghost.org/u/davidgane)
#### Post date: [August 24, 2021, 3:54am UTC](https://forum.ghost.org/t/removing-elements-from-select-posts-dawn-theme/25112/3 "2021-08-24T03:54:48Z")

</div>

Awesome. This did the trick. Thank you.
