Default pages: show or not in navigation

Just as we get a checkbox

Include this page in your blog navigation

for custom Pages, I’d love such a checkbox for default pages too, like Replies, Archive, Photos.

My use case is I’d like to have those pages, but they don’t need to be up there in that small small precious navigation space.

@manton is working on bringing those pages closer to how user-created pages function. Don’t know for sure, but I think you will get that checkbox when he’s done.

Until then, this custom CSS will remove the pages from your navigation:

nav a[href="/archive/"],
nav a[href="/photos/"],
nav a[href="/replies/"] {
  display:none;
}

Add the snippet to your blog by navigating to Design → Edit CSS.

2 Likes

Thank you! Nice little hack.