Remove pagination

is there a CSS way to hide the “Older Posts” pagination link on Kiko, or do I have to create a custom template? unchecking the paginate home page in design doesn’t work :slight_smile:

Thank you!

Right now Kiko has pagination without respect to the checkmark theme-kiko/index.html at master · microdotblog/theme-kiko · GitHub

You can just remove the linked to line in your theme.

This CSS snippet should probably do what you want:

#post-nav {
  display: none;
}
1 Like

Worked like a charm! Thank you

Kiko has been updated to respect the pagination checkboxes under Design now, too.

1 Like