-
Is there a way to change the proportions of the nav pane? In my project the pane is too narrow and results in a lot of line wrapping. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
Yes, you could add a
If you put that little CSS code in a
Then it should work. Let me know :-) |
Beta Was this translation helpful? Give feedback.
-
Perfect, thanks. |
Beta Was this translation helpful? Give feedback.
-
Related second question - can the table of contents sidebar be changed/hidden? |
Beta Was this translation helpful? Give feedback.
-
I have my terminology wrong then - I mean the left-hand pane with the filter box in it. |
Beta Was this translation helpful? Give feedback.
-
I will re-close and think on how I can use a TOC. I think I see a way of auto-generating both the Github README and the fuller docs from a single source. Thanks for the prompt responses and the theme which is very much the balance of readability and highlighting important stuff that I wanted. |
Beta Was this translation helpful? Give feedback.
Yes, you could add a
custom.css
file to your project with the CSS that would change the proportions of thegrid-template-columns
used here. By default their value are:4fr 1fr
. The width of the central area is4fr
and the right side panel width is1fr
, but you could do something like:If you put that little CSS code in a
_static/custom.css
, and modify yourconf.py
to include it, like this:Then it should work. Let me know :-)