diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 16:31:45 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 16:31:45 -0500 |
commit | 43c62990c1cfc3a84462571551cabe9f464b601a (patch) | |
tree | 6801da614c69530cfa645d8fd4020fce88732901 /theme | |
parent | 7d049520112991edf1f1fd1f446bb892fc680b9c (diff) | |
download | fourisland-43c62990c1cfc3a84462571551cabe9f464b601a.tar.gz fourisland-43c62990c1cfc3a84462571551cabe9f464b601a.tar.bz2 fourisland-43c62990c1cfc3a84462571551cabe9f464b601a.zip |
Eased usability in IE
Previously, IE had a problem with IE 6 that made it impossible to use Four Island. The rightbar was cleared to the bottom, the posts' text were invisible, the top-fade obscured text and The Fourm was illegiable. This has (mostly) been fixed with a conditional stylesheet. Four Island doesn't look perfect in IE yet (and probably never will) but at least now it's usable.
Diffstat (limited to 'theme')
-rw-r--r-- | theme/css/ie.css | 11 | ||||
-rwxr-xr-x | theme/header.tpl | 3 |
2 files changed, 12 insertions, 2 deletions
diff --git a/theme/css/ie.css b/theme/css/ie.css new file mode 100644 index 0000000..bdf6d92 --- /dev/null +++ b/theme/css/ie.css | |||
@@ -0,0 +1,11 @@ | |||
1 | div#top-fade { | ||
2 | display: none; | ||
3 | } | ||
4 | |||
5 | body * { | ||
6 | overflow: hidden; | ||
7 | } | ||
8 | |||
9 | dl.icon { | ||
10 | height: 50px; | ||
11 | } | ||
diff --git a/theme/header.tpl b/theme/header.tpl index b636cef..4c32e4c 100755 --- a/theme/header.tpl +++ b/theme/header.tpl | |||
@@ -3,6 +3,7 @@ | |||
3 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> | 3 | <TITLE><!--EXTRATITLE-->Four Island</TITLE> |
4 | 4 | ||
5 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->" /> | 5 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css.php?id=<!--BODYID-->&cat=<!--CATEGORY-->" /> |
6 | <!--[if IE]><LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/ie.css" /><![endif]--> | ||
6 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/print.css" MEDIA="print" /> | 7 | <LINK REL="stylesheet" TYPE="text/css" HREF="http://fourisland.com/theme/css/print.css" MEDIA="print" /> |
7 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> | 8 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" /> |
8 | <META HTTP-EQUIV="Content-Language" CONTENT="en" /> | 9 | <META HTTP-EQUIV="Content-Language" CONTENT="en" /> |
@@ -10,8 +11,6 @@ | |||
10 | <LINK REL="shortcut" HREF="/images/kirbyfolder.ico" /> | 11 | <LINK REL="shortcut" HREF="/images/kirbyfolder.ico" /> |
11 | <LINK REL="icon" HREF="/images/kirbyfolder.ico" /> | 12 | <LINK REL="icon" HREF="/images/kirbyfolder.ico" /> |
12 | <LINK REL="pingback" HREF="http://fourisland.com/xmlrpc.php" /> | 13 | <LINK REL="pingback" HREF="http://fourisland.com/xmlrpc.php" /> |
13 | <SCRIPT SRC="/theme/js/jquery-1.2.6.min.js" TYPE="text/javascript"></SCRIPT> | ||
14 | <SCRIPT SRC="/theme/js/jquery.ie6blocker.js" TYPE="text/javascript"></SCRIPT> | ||
15 | 14 | ||
16 | <!--HEADTAGS--> | 15 | <!--HEADTAGS--> |
17 | </HEAD> | 16 | </HEAD> |