Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Previous and Next links #1513

Open
iaindillingham opened this issue May 7, 2024 · 2 comments
Open

Previous and Next links #1513

iaindillingham opened this issue May 7, 2024 · 2 comments

Comments

@iaindillingham
Copy link
Member

A user1 reports that it's easy not to notice the Previous and Next links on documentation pages. These links are especially important when a collection of documentation pages form a logical sequence, such as the "Tutorial" collection in the "Getting started" section. (This collection was created by #1503.)

We should test this collection with a couple of users to establish whether the issue is commonplace. If it is, then we should consider a couple of candidate solutions before choosing one and implementing it.

Footnotes

  1. https://bennettoxford.slack.com/archives/C069SADHP1Q/p1715083970948039

@tomodwyer
Copy link
Member

Really stupid JS solution:

const contentArea = document.querySelector(`[data-md-component="content"]`);
const footerNav = document.querySelector(`[aria-label="Footer"]`);
const footClone = footerNav.cloneNode(true);
contentArea.appendChild(footClone);
footerNav.setAttribute("hidden", "true");

@iaindillingham
Copy link
Member Author

We triaged this issue in today's planning meeting and moved it to Later. For the specific case of helping users move through the tutorial, see #1518.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants