From 1533f0fc03dc06074fba7393650e55762869c7fb Mon Sep 17 00:00:00 2001 From: Joe Wollard Date: Fri, 21 Dec 2012 18:31:25 -0500 Subject: [PATCH] Fixing alignment of library title in Chrome. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The resulting html would render fine in Safari, but in Chrome 23.0.1271.101, the library title shifts to near the center of the page. This change anchors it to the left side of the containing element. --- Templates/html/css/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Templates/html/css/styles.css b/Templates/html/css/styles.css index bf946c02..1ad26185 100755 --- a/Templates/html/css/styles.css +++ b/Templates/html/css/styles.css @@ -169,6 +169,10 @@ th { position: absolute; } +#libraryTitle { + left: 0; +} + #top_header #library #developerHome { color: #92979E; right: 15px;