How I can add custom css file? The following config does not work for me:
# conf.py html_static_path = [\'_static\'] html_theme = \'default\' html_theme_opti
I'm using Sphinx 3.2.
I was able to add some simple custom CSS by doing the following:
conf.py
html_static_path = ['_static']
html_css_files = ['css/custom.css']
go to docs/_static/ and add css/custom.css
docs/_static/
css/custom.css
add custom css to your file then $ make html
$ make html
Source