diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-01-24 10:23:30 -0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-01-24 10:29:23 -0200 |
commit | 63e2501545f8ef932414ae617f02fe73681e987c (patch) | |
tree | 72a1ee4849bd8dff14e6430052007c91cd919582 | |
parent | 9fb7cf7616e8e9a8948edff1f203f35d2761a5db (diff) | |
download | shiboken-63e2501545f8ef932414ae617f02fe73681e987c.tar.gz shiboken-63e2501545f8ef932414ae617f02fe73681e987c.tar.xz shiboken-63e2501545f8ef932414ae617f02fe73681e987c.zip |
Fix bug#636 - "Unable to navigate back to the main site from the generated documentation"
-rw-r--r-- | doc/_themes/pysidedocs/layout.html | 2 | ||||
-rw-r--r-- | doc/_themes/pysidedocs/static/pysidedocs.css | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/_themes/pysidedocs/layout.html b/doc/_themes/pysidedocs/layout.html index eb574310..3115aa72 100644 --- a/doc/_themes/pysidedocs/layout.html +++ b/doc/_themes/pysidedocs/layout.html @@ -77,7 +77,7 @@ <div id="container"> <div id="header"> <div id="header_container"> - <div id="logo"></div> + <div id="logo"><a href="http://www.pyside.org"><img alt="PySide" src="{{ pathto('_static/pysidelogo.png', 1) }}" width="199" height="102" /></a></div> <ul id="relbar"> {%- for rellink in rellinks %} <li class="right"> diff --git a/doc/_themes/pysidedocs/static/pysidedocs.css b/doc/_themes/pysidedocs/static/pysidedocs.css index 5ae39236..741a6cfa 100644 --- a/doc/_themes/pysidedocs/static/pysidedocs.css +++ b/doc/_themes/pysidedocs/static/pysidedocs.css @@ -259,10 +259,8 @@ hr { } #logo { - background-image: url(pysidelogo.png); - background-repeat: no-repeat; -/* background-position: 0px 4px; */ - height: 112px; + text-align: left; + margin-bottom: 10px; } #search_box { |