piccolo_theme
piccolo_theme copied to clipboard
Widen the center part of the doc
Hi Team,
I want to widen/stretch to most of the screen central part of the document, so it utilizes the screen efficiently. How can I do that?
This is the doc - https://dl.mlguidebook.com/en/latest/index.html
You can do this by adding your own custom CSS file.
conf.py
html_static_path = ["_static"]
html_css_files = ["my_styles.css"]
my_styles.css
div.documentwrapper {
max-width: 70rem !important;
}