diff options
-rw-r--r-- | template-common/default-layout.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/template-common/default-layout.css b/template-common/default-layout.css index 8f284e6eb..a92ad98cd 100644 --- a/template-common/default-layout.css +++ b/template-common/default-layout.css @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $Id:$ */ /* Set the width of the menubar for the galery */ #menubar { @@ -7,6 +7,11 @@ #content { margin-left: 20em; /* = #menubar width + 2em */ } +/* Set minimum width of the page before getting a scrollbar */ +/* IE5 and IE6 don't get that */ +BODY { + min-width: 60em; /* ~ 3* #menubar width */ +} /* Set the width of the menubar for the admin section */ BODY#theAdminPage #menubar { |