Eric schrieb:
> Hello! I've looked and looked, but I can't figure out how to get the
> sidebar for the sphinxdoc.css html style to be at the top-right of my
> document instead of the bottom-right, where it appears to be by
> default. I've looked through the sphinx docs and conf.py from the
> mercurial repo, and I can't see any difference. Yet somehow the
> sidebar is at the top in the sphinx docs and at the bottom in my
> example. Has anyone here seen this behavior before?
This is expected; you need at least a custom layout.html that looks
like this:
{% extends "!layout.html" %}
{# put the sidebar before the body #}
{% block sidebar1 %}{{ sidebar() }}{% endblock %}
{% block sidebar2 %}{% endblock %}
With Sphinx 0.6, there will be proper theming support so that you
only have to say "theme = 'sphinxdoc'" and everything will be
all right.
Georg
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---