diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-04-19 17:44:39 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-04-19 17:44:39 +0000 |
commit | de2d7a40f9f88bcc420a858710fd3f52dcf2cb4d (patch) | |
tree | e2c11471aab66cc16b41925d33d6bdb67c725bf8 /template/yoga/fix-ie5-ie6.css | |
parent | 94c39903dcc29879c8827dfd398af9434c1dc95e (diff) |
- fix : bug 298 (vanishing objects in IE6)
git-svn-id: http://piwigo.org/svn/trunk@1205 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/fix-ie5-ie6.css | 9 |
1 files changed, 9 insertions, 0 deletions
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 */ +} + |