RE: Netscape 4.04

2001-01-16 Thread Zachary Bedell
apologies for the waste of time/bandwidth. Just felt the need to add my two cents... Regards, Zac Bedell -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15, 2001 2:56 PM To: CF-Talk Subject: RE: Netscape 4.04 Hello Adrian, It works great -

Re: Netscape 4.04

2001-01-15 Thread Jay Brushett
Hi, If your page uses cascading style sheets then that is probably your problem. There is a well known bug in version 4.x of netscape that loses all style sheet information when the page is resized. Use this javascript code to fix it: script !-- if (document.layers) { window.onResize =

RE: Netscape 4.04

2001-01-15 Thread James Maltby
It's mainly a Netscape problem - Dreamweaver solves the problem with this script: script language="JavaScript" !-- function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=="Netscape")(parseInt(appVersion)==4)) {

RE: Netscape 4.04

2001-01-15 Thread Robert Orlini
, 2001 4:37 AM To: CF-Talk Subject: Re: Netscape 4.04 Hi, If your page uses cascading style sheets then that is probably your problem. There is a well known bug in version 4.x of netscape that loses all style sheet information when the page is resized. Use this javascript code to fix it: script

RE: Netscape 4.04

2001-01-15 Thread Robert Orlini
Thanks James. I don't use Dreamweaver...would the code below with my home page saved as a Cold Fusion file? Robert O. -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15, 2001 8:17 AM To: CF-Talk Subject: RE: Netscape 4.04 It's mainly a Netscape

RE: Netscape 4.04

2001-01-15 Thread Jay Brushett
:37 AM To: CF-Talk Subject: Re: Netscape 4.04 Hi, If your page uses cascading style sheets then that is probably your problem. There is a well known bug in version 4.x of netscape that loses all style sheet information when the page is resized. Use this javascript code to fix

RE: Netscape 4.04

2001-01-15 Thread Russel Madere
Are you using tables on the page? I found that Netscape 4.0 did not like to resize tables. It was fixed when I got Netscape 4.7. Russel Russel Madere, Jr. Senior Web Developer ICQ: 5446158

RE: Netscape 4.04

2001-01-15 Thread Robert Orlini
8:48 AM To: CF-Talk Subject: RE: Netscape 4.04 Are you using tables on the page? I found that Netscape 4.0 did not like to resize tables. It was fixed when I got Netscape 4.7. Russel Russel Madere, Jr. Senior Web Developer

Re: Netscape 4.04

2001-01-15 Thread Adrian J. Moreno
Robert, the Javascript that James Maltby sent is just that - Javascript. It was just generated by DreamWeaver, but useable (sp?) by any HTML file. A similar script that I have been using is this one. Just put it in your header. script LANGUAGE="JavaScript1.2" !-- Fixes onresize bug in NS4

RE: Netscape 4.04

2001-01-15 Thread Robert Orlini
Hello Adrian, It works great - thank you! Robert O. -Original Message- From: Adrian J. Moreno [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15, 2001 12:48 PM To: CF-Talk Subject: Re: Netscape 4.04 Robert, the Javascript that James Maltby sent is just that - Javascript