- fix : bug 298 (vanishing objects in IE6)

git-svn-id: http://piwigo.org/svn/trunk@1205 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
chrisaga
2006-04-19 17:44:39 +00:00
parent 94c39903dc
commit de2d7a40f9
2 changed files with 9 additions and 4 deletions

View File

@@ -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;
}

View File

@@ -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 */
}