我正在使用狮身人面像主题雪花石膏。如何在电脑上获得更宽的屏幕?

问题描述 投票:0回答:1

窗口的内容部分对于我的预期用途来说太窄了。

我已经在 html_theme_options 中尝试了“body_max_width”:“none”。 我还尝试过“custom.css” .wy-nav-content { 最大宽度:75% !重要; } 以上都不适合我。 我的 conf.py 文件是基本的“开箱即用”类型。 谢谢!

window themes size python-sphinx
1个回答
0
投票

也许你已经找到了... 只需将其放入您的 conf.py 中即可:

html_theme_options = {
    'body_max_width' : 'none',
    'page_width': 'auto',
}
© www.soinside.com 2019 - 2024. All rights reserved.