diff options
-rw-r--r-- | skins/default/mail.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index f8b53e029..584994895 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -352,7 +352,7 @@ body.messagelist display: table; table-layout: fixed; /* css hack for IE */ - width: expression(document.getElementById('mailcontframe').clientWidth); + width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px'); } #messagelist thead tr td @@ -724,7 +724,7 @@ div.message-part blockquote blockquote blockquote padding: 0px; margin: 0px; /* css hack for IE */ - width: expression(document.documentElement.clientWidth-240); + width: expression((parseInt(document.documentElement.clientWidth)-240)+'px'); height: expression((parseInt(document.documentElement.clientHeight)-130)+'px'); } |