From 123375a84b997c37f9ec279701eece82ce383a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Dziewo=C5=84ski?= Date: Thu, 20 Jul 2017 17:07:13 +0000 Subject: [PATCH] Revert "Remove `position: absolute` and z-index from #p-logo" Caused the logo (which is a link to the main page) to become unclickable. This reverts commit 909aed33cb920598558a6f36474717d95d998b84. Bug: T171195 Change-Id: I3e215ef493568222bd4c2e0dbffc0da74241673a --- main.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.css b/main.css index 82919ab..4565927 100644 --- a/main.css +++ b/main.css @@ -28,6 +28,10 @@ div#column-content { line-height: 1.5em; } +div#column-one { + padding-top: 160px; +} + /* Hide, but keep accessible for screen-readers */ #column-one h2 { position: absolute; @@ -208,8 +212,11 @@ table.rimage { */ #p-logo { + top: 0; + left: 0; + position: absolute; /*needed to use z-index */ + z-index: 3; height: 155px; - margin-bottom: 5px; width: 12em; overflow: visible; }