From de2d7a40f9f88bcc420a858710fd3f52dcf2cb4d Mon Sep 17 00:00:00 2001 From: chrisaga Date: Wed, 19 Apr 2006 17:44:39 +0000 Subject: - fix : bug 298 (vanishing objects in IE6) git-svn-id: http://piwigo.org/svn/trunk@1205 68402e56-0260-453c-a942-63ccdbb3a9ee --- template/yoga/default-layout.css | 4 ---- template/yoga/fix-ie5-ie6.css | 9 +++++++++ 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'template') diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index 08ae88864..c6c8a8fff 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -196,10 +196,6 @@ FORM#categoryPermissions LI { white-space: nowrap; } -#theHeader { - width: 100%; /* <- useless but seems to make IE6 happy */ -} - #theHeader H1 { margin-bottom: 0.5em; } diff --git a/template/yoga/fix-ie5-ie6.css b/template/yoga/fix-ie5-ie6.css index 4e6daf38e..34195ebda 100644 --- a/template/yoga/fix-ie5-ie6.css +++ b/template/yoga/fix-ie5-ie6.css @@ -1,2 +1,11 @@ /* $Id:$ */ /* Issues in IE from 5 to 6 only to to be used with IE7 */ + +/* to avoid vanishing objects in IE6 */ +H1, #theHeader { + width: 100%; /* <- useless but seems to make IE6 happy */ +} +#content { + height: 1em; /* for IE6 it's like min-height */ +} + -- cgit v1.2.3