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 -

Netscape 4.04

2001-01-15 Thread Robert Orlini
Hello, I am using Netscape ver 4.04. Our website uses a Cold Fusion (.cfm) opening page because of some dynamic data that changes on a day-to-day basis. When a user adjusts the screen by using the mouse to resize the borders, our home page then does not reload and appears blank. Refreshing or

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
D]] Sent: 15 January 2001 14:38 To: CF-Talk Subject: Netscape 4.04 Hello, I am using Netscape ver 4.04. Our website uses a Cold Fusion (.cfm) opening page because of some dynamic data that changes on a day-to-day basis. When a user adjusts the screen by using the mouse to resize the borders, our

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
://www.TurboSquid.com Some days you eat the bear; some days the bear eats you. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Monday, January 15, 2001 08:38 To: CF-Talk Subject: Netscape 4.04 Hello, I am

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