Return-Path: Delivered-To: apmail-xml-forrest-dev-archive@xml.apache.org Received: (qmail 52240 invoked by uid 500); 16 Jun 2003 00:47:53 -0000 Mailing-List: contact forrest-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: forrest-dev@xml.apache.org Delivered-To: mailing list forrest-dev@xml.apache.org Received: (qmail 52231 invoked from network); 16 Jun 2003 00:47:52 -0000 Received: from webmail.frogspace.net (216.222.206.4) by daedalus.apache.org with SMTP; 16 Jun 2003 00:47:52 -0000 Received: (from nobody@localhost) by webmail.frogspace.net (8.11.6/8.11.6) id h5G0lpA27973 for forrest-dev@xml.apache.org; Sun, 15 Jun 2003 17:47:51 -0700 X-Authentication-Warning: webmail.frogspace.net: nobody set sender to nate@inventric.com using -f Received: from 68.164.0.118 ( [68.164.0.118]) as user invennate@mail.inventric.com by webmail.inventric.com with HTTP; Sun, 15 Jun 2003 17:47:51 -0700 Message-ID: <1055724471.3eed13b747585@webmail.inventric.com> Date: Sun, 15 Jun 2003 17:47:51 -0700 From: nate@inventric.com To: forrest-dev@xml.apache.org Subject: font size in IE 6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.0 X-Originating-IP: 68.164.0.118 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I aplogize if this has been mentioned before on this list. The Krysalis skin views poorly in IE 6.0. I have noticed this even on the Krysalis website. When a user views the website for the first time, the font size becomes enormous. Looking in the cookie, I see its at 100px. Stepping throuhg the fontsize.js shows me that the ndeGetDocTextSize() method returns the current font size as 100%, not 100px. So fontscript.js things the user is already at 100px. I solved this with the following change in the ndeSetTextSize method: if(!startSize) { startSize = 16; } else if( startSize.indexOf('%') > -1 ) { startSize = 16; } else{ startSize = parseInt(startSize); } Seem good for the skin? -Nate