Jason S wrote: > I looked at the HTML theming support page (http://sphinx.pocoo.org/ > theming.html) and am confused... does anyone have a couple of simple > examples of how to use this? > > I'm very familiar with CSS + want to tweak the fonts / font sizes > slightly in Sphinx HTML output, but don't know how to do this in a way > that plays nicely with Sphinx.
In your _static directory create, eg, my.css which starts with @import "default.css"; and which then adds or overrides as needed. Then in your conf.py add or update: html_style = 'winsys.css' TJG -- You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en.
