-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Top bar hides section headings when visiting perma links #634
Comments
@sorin-davidoi could this be something to do with how the header floats on top of the page? |
Yes, most likely. Will take a look in the following days. |
Just checking: Are there any updates/fixes/work-arounds for this issue? Interestingly, the problem is not present in Firefox for me, but it is Chrome. Is there something to be changed in |
@sts10 I think changes would be needed in |
OK, my fix of choice at this point is, in chrome.css on line 73, to change html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-container {
transform: translateY(-60px);
} to #menu-bar:not(:hover).folded > #menu-bar-sticky-container {
transform: translateY(-60px);
} This change ensures that the top menu will be "hidden" until the user scrolls up, even when the sidebar is opened. This is a pretty good solution for my needs, but I'm not sure it's a change that should be made to the default theme. |
PR #1077 mostly fixes this, so closing for now. |
When visiting the chapter title or the smaller subsection titles via permalinks such as this chapter title or this subsection, the title will be hidden by the top bar. There is no issue for sections (example)
In case you're seeing something different, here's a screenshot
The text was updated successfully, but these errors were encountered: