How to disable 'Section Navigation' text #1579
Answered
by
12rambau
tim-stephenson
asked this question in
Q&A
-
I would like to remove the text that says, 'Section Navigation'. I have noticed that pandas and bohek do not have it. Yet networkx does. I am thus assuming this is configurable somehow. I think it stems from the following line: |
Beta Was this translation helpful? Give feedback.
Answered by
12rambau
Dec 1, 2023
Replies: 1 comment
-
It is not configurable from the theme itself but by inspecting the Bokeh website, it turns out they simply hide it with the following line in their custom.css: /* make left sidebar title invisible */
.bd-links__title {
display: none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tim-stephenson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is not configurable from the theme itself but by inspecting the Bokeh website, it turns out they simply hide it with the following line in their custom.css:
https://github.com/bokeh/bokeh/blob/931c912f2fca2b659f7d8b463640e1a6198fb770/docs/bokeh/source/_static/custom.css#L58C8-L58C8