From f7c708b22a12c976e8cd413c83d10deaf1268d64 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 17 Apr 2011 16:31:58 +0200 Subject: [PATCH] fixing header layout bug --- css/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/styles.css b/css/styles.css index 8f8fa693f10..ba6f5bf2c36 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1,6 +1,6 @@ * { margin:0; padding:0; border:0; } -body { background-color:#fefefe; background-image:url('../img/body_background.jpg'); background-repeat:repeat-y; background-position:left top; line-height:1.6em; font:normal 80% "Lucida Grande", Arial, Verdana, sans-serif; color:#000; } -#header { position:fixed; width:100%; height:5.5em; padding:0.5em 1.5em; background-image:url('../img/header-a.png'); background-repeat:repeat-x; background-position:left top; } +body { position:absolute; background:#fefefe url('../img/body_background.jpg') repeat-y left top; line-height:1.6em; font:normal 80% "Lucida Grande", Arial, Verdana, sans-serif; color:#000; } +#header { position:fixed; width:100%; height:5.5em; padding:0.5em 1.5em; background:url('../img/header-a.png') repeat-x left top; } #plugins { position:fixed; } #main { margin-top:7em; } #body-settings #header { background-image:url('../img/header-settings-a.png'); } -- 2.39.5