From: Gabriel Wicke Date: Mon, 19 Apr 2004 19:42:25 +0000 (+0000) Subject: don't match toolbar X-Git-Tag: 1.3.0beta1~373 X-Git-Url: http://git.cyclocoop.org/%22.htmlspecialchars%28%24url_syndic%29.%22?a=commitdiff_plain;h=824dff8c3049274bc00e305b2e4e6dcd8cd22323;p=lhc%2Fweb%2Fwiklou.git don't match toolbar --- diff --git a/stylesheets/IEFixes.js b/stylesheets/IEFixes.js index 557ab4146a..79fd4ff21e 100644 --- a/stylesheets/IEFixes.js +++ b/stylesheets/IEFixes.js @@ -73,7 +73,9 @@ function relativeforfloats() { function setrelative (nodes) { var i = 0; while (i < nodes.length) { - if(nodes[i].style.float != null || nodes[i].align != null) nodes[i].style.position = 'relative'; + if(nodes[i].style.float != ('none'|null) || + nodes[i].align != (''|null|'none')) + nodes[i].style.position = 'relative'; i++; } }