gpt4 book ai didi

html - 修改Sphinx主题的内容宽度 'Read the Docs'

转载 作者:技术小花猫 更新时间:2023-10-29 11:44:14 25 4
gpt4 key购买 nike

我正在为我的文档使用“阅读文档”Sphinx 主题。在原题中,给出如下

http://read-the-docs.readthedocs.org/en/latest/theme.html

内容或主要布局宽度设计为适合移动设备。但是,对于我的项目,我希望它更宽一些。我不懂 HTML,因此如果有人能给我一些增加内容(布局)宽度的线索,我将不胜感激。

最佳答案

另一种选择是在 source/_static 中创建一个样式表,只包含您想要的 css,例如

.wy-nav-content {
max-width: none;
}

.wy-nav-content {
max-width: 1200px !important;
}

确保在 source/conf.py 中引用了该目录 - 我相信默认情况下有一行可以执行此操作,即

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

然后在 source/_templates/layout.html 中创建一个自定义布局,并执行类似这样的操作以包含您的样式表

{% extends "!layout.html" %}
{% block extrahead %}
<link href="{{ pathto("_static/style.css", True) }}" rel="stylesheet" type="text/css">
{% endblock %}

假设您调用样式表 style.css

关于html - 修改Sphinx主题的内容宽度 'Read the Docs',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23211695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com