Skip to content
Discussion options

You must be logged in to vote

The recent update changed the navigation bar's HTML structure, so the old CSS selector stopped working. The back/forward buttons still use the same IDs, but they're now inside new parent containers like #zen-appcontent-navbar-wrapper and #zen-appcontent-navbar-container. To hide them, you need a more specific selector. Try this:

#zen-appcontent-navbar-container #back-button,
#zen-appcontent-navbar-container #forward-button {
  display: none !important;
}

If that doesn't work, inspect the DOM to confirm the exact parent chain and adjust the selector accordingly. There’s no config option for hiding these buttons—CSS is still the way to go, just with updated selectors now that the structure…

Replies: 3 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@akamienski
Comment options

Answer selected by akamienski
Comment options

You must be logged in to vote
1 reply
@akamienski
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants