Removing elements from select posts Dawn theme

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.

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

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

Awesome. This did the trick. Thank you.

1 Like