piccolo_theme icon indicating copy to clipboard operation
piccolo_theme copied to clipboard

Widen the center part of the doc

Open NishantBaheti opened this issue 1 year ago • 1 comments

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?

image

This is the doc - https://dl.mlguidebook.com/en/latest/index.html

NishantBaheti avatar Dec 28 '24 17:12 NishantBaheti

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;
}

uralbash avatar Oct 06 '25 08:10 uralbash