summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-06-21 20:18:53 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-06-21 20:18:53 +0800
commitfc38a620798f1e03f318bf5a152d227f7bc3084c (patch)
treef26fc036b54c89ab3ea3e7880cf6574b6b20c3a3 /doc
parentb68efdb1af6bccd466fed919c64190bad3677f47 (diff)
Fix CSS for anchors in WebKit
WebKit was ignoring the CSS to adjust the position of anchors for the fixed title bar. The fix is to make the anchor a block element.
Diffstat (limited to 'doc')
-rw-r--r--doc/templates/style.css3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/templates/style.css b/doc/templates/style.css
index fa07045d..45ce833f 100644
--- a/doc/templates/style.css
+++ b/doc/templates/style.css
@@ -49,8 +49,9 @@ div.main {
}
div.main a[name] {
+ display: block;
position: relative;
- top: -4.5em;
+ top: -5em;
}
div.outset {