RE: IE 6.0 Bug ... style sheet bug ... looking for workaround

2002-06-03 Thread Brian Scandale

Tried that... and a zillion other things too. ;-(

Are you running IE 6.0 and see the problem??


At 11:09 PM 6/2/02 -0700, you wrote:
Brian,

Try adding a pound sign before the rgb color value.

background: #66;

Robert

 -Original Message-
 From: Brian Scandale [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, June 02, 2002 12:28 PM
 To: CF-Talk
 Subject: IE 6.0 Bug ... style sheet bug ... looking for workaround
 
 
 I just installed a large project on a site that is used 
 exclusively with IE 6.0 and suddenly some very simple text is not 
 displaying inside forms.
 
 So I hit it with IE 5.5 and all is OK.
 
 I am having trouble with Free Form text that floats above Select 
 Boxes not displaying unless I drag the scroll bar to force IE to 
 repaint the screen... the text is there, but not displayed until 
 the scroll bar drag forces IE to repaint the section as it comes 
 into view a second time... THIS ONLY happens above the FIRST 
 Select Box on the page.
 I jerked the .css file and put 1 style sheet tag into the header 
 section to demonstrate the problem. Removing the 'background: 
 66' from the style sheet solves the problem at the expense of 
 the entire site design.
 
 Pulled most of my hair out by now.
 
 You can reproduce this BUG with this simple html code below... if 
 you are running IE 6.0 
 
 Any Ideas?? what a workaround might be??
 
 Once again, thanks for Looking at this.
 ~Brian 
 --
 --
 html
 head
 style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 --
  here it is again
 --
 
 Perhaps this Exclaimed one (!) one is a readable copy if the 
 first one formats and displays as a web document in your Email reader.
 
 !html
 !head
 !style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 !body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 
 
 
 
 
 
 
 
 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug ... style sheet bug ... looking for workaround

2002-06-03 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)

Have you checked MS site for a possible fix?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 03, 2002 1:48 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug ... style sheet bug ... looking for workaround


Tried that... and a zillion other things too. ;-(

Are you running IE 6.0 and see the problem??


At 11:09 PM 6/2/02 -0700, you wrote:
Brian,

Try adding a pound sign before the rgb color value.

background: #66;

Robert

 -Original Message-
 From: Brian Scandale [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, June 02, 2002 12:28 PM
 To: CF-Talk
 Subject: IE 6.0 Bug ... style sheet bug ... looking for workaround
 
 
 I just installed a large project on a site that is used 
 exclusively with IE 6.0 and suddenly some very simple text is not 
 displaying inside forms.
 
 So I hit it with IE 5.5 and all is OK.
 
 I am having trouble with Free Form text that floats above Select 
 Boxes not displaying unless I drag the scroll bar to force IE to 
 repaint the screen... the text is there, but not displayed until 
 the scroll bar drag forces IE to repaint the section as it comes 
 into view a second time... THIS ONLY happens above the FIRST 
 Select Box on the page.
 I jerked the .css file and put 1 style sheet tag into the header 
 section to demonstrate the problem. Removing the 'background: 
 66' from the style sheet solves the problem at the expense of 
 the entire site design.
 
 Pulled most of my hair out by now.
 
 You can reproduce this BUG with this simple html code below... if 
 you are running IE 6.0 
 
 Any Ideas?? what a workaround might be??
 
 Once again, thanks for Looking at this.
 ~Brian 
 --
 --
 html
 head
 style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 --
  here it is again
 --
 
 Perhaps this Exclaimed one (!) one is a readable copy if the 
 first one formats and displays as a web document in your Email reader.
 
 !html
 !head
 !style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 !body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 
 
 
 
 
 
 
 
 


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug ... style sheet bug ... looking for workaround

2002-06-03 Thread Robert Obreczarek

Brian,

Nope, I just noticed the missing pound sign. I know Netscape has
problems with that. As for IE 6, I'm not planning to upgrade.
I've heard too many complaints about it (same goes for NN 6).
I'm pretty comfortable with ie 5.5 sp2. Sorry I can't be much more
helpful.

Robert

 -Original Message-
 From: Brian Scandale [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, June 02, 2002 11:48 PM
 To: CF-Talk
 Subject: RE: IE 6.0 Bug ... style sheet bug ... looking for workaround
 
 
 Tried that... and a zillion other things too. ;-(
 
 Are you running IE 6.0 and see the problem??
 
 
 At 11:09 PM 6/2/02 -0700, you wrote:
 Brian,
 
 Try adding a pound sign before the rgb color value.
 
 background: #66;
 
 Robert
 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug ... style sheet bug ... looking for workaround

2002-06-03 Thread Brian Scandale

Yes I have checked but perhaps I don't know how to search their knowledge base... 
none of my searches has turned up anything of value... 

At 01:50 AM 6/3/02 -0500, you wrote:
Have you checked MS site for a possible fix?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 03, 2002 1:48 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug ... style sheet bug ... looking for workaround
To: [EMAIL PROTECTED] Subject: IE 6.0 Bug ... style sheet bug ... looking for 
workaround
I just installed a large project on a site that is used exclusively with IE 6.0 and 
suddenly some very simple text is not displaying inside forms.
So I hit it with IE 5.5 and all is OK.
I am having trouble with Free Form text that floats above Select Boxes not displaying 
unless I drag the scroll bar to force IE to repaint the screen... the text is there, 
but not displayed until the scroll bar drag forces IE to repaint the section as it 
comes into view a second time... THIS ONLY happens above the FIRST Select Box on the 
page.
I jerked the .css file and put 1 style sheet tag into the header section to 
demonstrate the problem. Removing the 'background: 66' from the style sheet solves 
the problem at the expense of the entire site design.
Pulled most of my hair out by now.
You can reproduce this BUG with this simple html code below... if you are running IE 
6.0 
Any Ideas?? what a workaround might be??
Once again, thanks for Looking at this.
~Brian 
--
--
html
head
style type=text/css
!--
FORM { font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : 11px;
background : 66;
border : thin outset }
--
/style
/head
body leftmargin=0 topmargin=0
table width=100% cellspacing=0
tr
td
brADDING ITEM DETAIL - CHOOSE A PART TYPE
form name=PartTypeSelect action=index.html method=POST
brstrongSelect Part Type/strongbr
Select name=PartType_ID size=6 align=left onclick=this.form.submit()
Option value=3BACKLIGHT/Option
Option value=5MILLENIA/Option
Option value=4TETRUS/Option
Option value=2TSUNAMI/Option
/SELECT
br
/form
form action=index.html method=post
input name=Submit type=Submit value=Cancel Action
/form
form name=PartSelect action=index.cfm method=POST
input name=PartType_ID type=Hidden value=2
strongSelect Part/strongbr
Select name=Part_ID size=6 align=top onclick=this.form.submit()
Option value=2THE FIRST PART NUMBER A THE FIRST PART NAME/Option
Option value=3TSV C TSUNAMI-VITEX/Option
/SELECT
/form
br
/td
/tr
/table
/body
/html 
--
here it is again
--
Perhaps this Exclaimed one (!) one is a readable copy if the first one formats and 
displays as a web document in your Email reader.
!html
!head
!style type=text/css
!--
FORM { font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : 11px;
background : 66;
border : thin outset }
--
/style
/head
!body leftmargin=0 topmargin=0
table width=100% cellspacing=0
tr
td
brADDING ITEM DETAIL - CHOOSE A PART TYPE
form name=PartTypeSelect action=index.html method=POST
brstrongSelect Part Type/strongbr
Select name=PartType_ID size=6 align=left onclick=this.form.submit()
Option value=3BACKLIGHT/Option
Option value=5MILLENIA/Option
Option value=4TETRUS/Option
Option value=2TSUNAMI/Option
/SELECT
br
/form
form action=index.html method=post
input name=Submit type=Submit value=Cancel Action
/form
form name=PartSelect action=index.cfm method=POST
input name=PartType_ID type=Hidden value=2
strongSelect Part/strongbr
Select name=Part_ID size=6 align=top onclick=this.form.submit()
Option value=2THE FIRST PART NUMBER A THE FIRST PART NAME/Option
Option value=3TSV C TSUNAMI-VITEX/Option
/SELECT
/form
br
/td
/tr
/table
/body
/html 


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug ... style sheet bug ... looking for workaround

2002-06-02 Thread Robert Obreczarek

Brian,

Try adding a pound sign before the rgb color value.

background: #66;

Robert

 -Original Message-
 From: Brian Scandale [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, June 02, 2002 12:28 PM
 To: CF-Talk
 Subject: IE 6.0 Bug ... style sheet bug ... looking for workaround
 
 
 I just installed a large project on a site that is used 
 exclusively with IE 6.0 and suddenly some very simple text is not 
 displaying inside forms.
 
 So I hit it with IE 5.5 and all is OK.
 
 I am having trouble with Free Form text that floats above Select 
 Boxes not displaying unless I drag the scroll bar to force IE to 
 repaint the screen... the text is there, but not displayed until 
 the scroll bar drag forces IE to repaint the section as it comes 
 into view a second time... THIS ONLY happens above the FIRST 
 Select Box on the page.
 I jerked the .css file and put 1 style sheet tag into the header 
 section to demonstrate the problem. Removing the 'background: 
 66' from the style sheet solves the problem at the expense of 
 the entire site design.
 
 Pulled most of my hair out by now.
 
 You can reproduce this BUG with this simple html code below... if 
 you are running IE 6.0 
 
 Any Ideas?? what a workaround might be??
 
 Once again, thanks for Looking at this.
 ~Brian 
 --
 --
 html
 head
 style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 --
  here it is again
 --
 
 Perhaps this Exclaimed one (!) one is a readable copy if the 
 first one formats and displays as a web document in your Email reader.
 
 !html
 !head
 !style type=text/css
 !--
 FORM {  font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 11px;
 background : 66;
 border : thin outset }
 --
 /style
 /head
 
 !body leftmargin=0 topmargin=0
 
 table width=100% cellspacing=0
 tr
 td
 brADDING ITEM DETAIL - CHOOSE A PART TYPE
 form name=PartTypeSelect action=index.html method=POST
 brstrongSelect Part Type/strongbr
 Select name=PartType_ID size=6 align=left 
 onclick=this.form.submit()
 Option value=3BACKLIGHT/Option
 Option value=5MILLENIA/Option
 Option value=4TETRUS/Option
 Option value=2TSUNAMI/Option
 /SELECT
 br
 /form
 form action=index.html method=post
 input name=Submit type=Submit value=Cancel Action
 /form
 form name=PartSelect action=index.cfm method=POST
 input name=PartType_ID type=Hidden value=2
 strongSelect Part/strongbr
 Select name=Part_ID size=6 align=top 
 onclick=this.form.submit()
 Option value=2THE FIRST PART NUMBER A THE 
 FIRST PART NAME/Option
 Option value=3TSV C TSUNAMI-VITEX/Option
 /SELECT
 /form
 br
 /td
 /tr
 /table
 /body
 /html 
 
 
 
 
 
 
 
 
 
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-31 Thread Adrian Lynch

I'll have some of that too :O)

[EMAIL PROTECTED]

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: 31 May 2002 04:34
To: CF-Talk
Subject: Re: IE 6.0 Bug??


I have the problem reduced to a simple .html file and a .css style sheet
that goes with it if someone want to take a crack at it... :-)

At 08:14 PM 5/30/02 -0700, you wrote:
Changing to ...-color: in the FORM .css file statement effects
no-change. it still renders the color and causes the text to not
display... unless I drag the scroll bar causing the browser to re-paint  the
scrolled area of the  page. Then the text becomes visible.


I don't want the entire page background to be  #66 in color so I have
not used that approach..

It's maddening at the  moment!  Pulling the color statement out leaves the
Form white... 


At 10:01 PM 5/30/02 -0400, you wrote:
2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some
very simple text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian

 



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-31 Thread Tony_Petruzzi

remove the #

background-color: 66

Anthony Petruzzi
Webmaster
954-321-4703
[EMAIL PROTECTED]
http://www.sheriff.org


-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 31, 2002 5:31 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug??


I'll have some of that too :O)

[EMAIL PROTECTED]

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: 31 May 2002 04:34
To: CF-Talk
Subject: Re: IE 6.0 Bug??


I have the problem reduced to a simple .html file and a .css style sheet
that goes with it if someone want to take a crack at it... :-)

At 08:14 PM 5/30/02 -0700, you wrote:
Changing to ...-color: in the FORM .css file statement effects
no-change. it still renders the color and causes the text to not
display... unless I drag the scroll bar causing the browser to re-paint  the
scrolled area of the  page. Then the text becomes visible.


I don't want the entire page background to be  #66 in color so I have
not used that approach..

It's maddening at the  moment!  Pulling the color statement out leaves the
Form white... 


At 10:01 PM 5/30/02 -0400, you wrote:
2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some
very simple text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian

 




__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-31 Thread Ryan Kime

Thought I would chime in on this...

The form element doesn't seem to like css properties that much so I would
suggest defining a css class and using it on a table that wraps around the
form. Define it by naming something with a period in front of the name, then
use the class= within the appropriate table tag. I would also separate out
the input box definitions if you have font-specific stuff. Something like
this:

form-color {
background-color : #66; 
}

input {
font-family : Arial, Helvetica, sans-serif;
font-size : 16px;
}

-

table class=form-color
form action=gohere.cfm method=post
tr
tdinput type=text name=qwqw size=20/td
/tr


Hope that helps!


Ryan Kime

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, May 30, 2002 9:00 PM
To: CF-Talk
Subject: IE 6.0 Bug??


Just installed on a site that is exclusively IE 6.0 and suddenly some very
simple text is not displaying...

So I hit it with IE 5.5 and all is OK.

Next I pulled the View/Source output apart and everything looks OK.

Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

Is there something wrong with my .css statement that anyone can tell?

FORM {  font-size : 11px;
background : #66;  ---theBadActor
border : thin outset;
}

Thanks for Looking at this.

~Brian


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-31 Thread Brian Scandale


Forms are green Tables inside forms have rows that are yellow... this sets off 
two different forms inside one page nicely... 


I will give your ideas some thought  and see how I might use them again... this is 
only a problem with IE 6.0

and the two files I created  demonstrate the error if running 6.0

thanks for working this with me.

Brian



Thought I would chime in on this...

The form element doesn't seem to like css properties that much so I would
suggest defining a css class and using it on a table that wraps around the
form. Define it by naming something with a period in front of the name, then
use the class= within the appropriate table tag. I would also separate out
the input box definitions if you have font-specific stuff. Something like
this:

form-color {
background-color : #66; 
}

input {
font-family : Arial, Helvetica, sans-serif;
font-size : 16px;
}

-

table class=form-color
form action=gohere.cfm method=post
tr
tdinput type=text name=qwqw size=20/td
/tr


Hope that helps!


Ryan Kime

-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, May 30, 2002 9:00 PM
To: CF-Talk
Subject: IE 6.0 Bug??


Just installed on a site that is exclusively IE 6.0 and suddenly some very
simple text is not displaying...

So I hit it with IE 5.5 and all is OK.

Next I pulled the View/Source output apart and everything looks OK.

Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

Is there something wrong with my .css statement that anyone can tell?

FORM {  font-size : 11px;
background : #66;  ---theBadActor
border : thin outset;
}

Thanks for Looking at this.

~Brian



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Critz

oi Brian!!

have you tried background-color: ? (dunno if it works)


-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Thursday, May 30, 2002, 10:00:00 PM, you wrote:

BS Just installed on a site that is exclusively IE 6.0 and suddenly some very simple 
text is not displaying...

BS So I hit it with IE 5.5 and all is OK.

BS Next I pulled the View/Source output apart and everything looks OK.

BS Discovered that if I pull the background statement,(SeeBelow) out of the .css file 
then it displays properly... but that's a bummer because that ruins the esthetics of 
the page.

BS Is there something wrong with my .css statement that anyone can tell?

BS FORM {  font-size : 11px;
BS background : #66;  ---theBadActor
BS border : thin outset;
BS }

BS Thanks for Looking at this.

BS ~Brian

BS 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-30 Thread Ken Wilson

Does it like background-color: #66; any better?

Ken



-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 30, 2002 10:00 PM
To: CF-Talk
Subject: IE 6.0 Bug??


Just installed on a site that is exclusively IE 6.0 and suddenly some very
simple text is not displaying...

So I hit it with IE 5.5 and all is OK.

Next I pulled the View/Source output apart and everything looks OK.

Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

Is there something wrong with my .css statement that anyone can tell?

FORM {  font-size : 11px;
background : #66;  ---theBadActor
border : thin outset;
}

Thanks for Looking at this.

~Brian


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Jason Miller

2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some very simple 
text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the .css file 
then it displays properly... but that's a bummer because that ruins the esthetics of 
the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian

 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Brian Scandale

Changing to ...-color: in the FORM .css file statement effects no-change. it 
still renders the color and causes the text to not display... unless I drag the scroll 
bar causing the browser to re-paint  the scrolled area of the  page. Then the text 
becomes visible.


I don't want the entire page background to be  #66 in color so I have not used 
that approach..

It's maddening at the  moment!  Pulling the color statement out leaves the Form 
white... 


At 10:01 PM 5/30/02 -0400, you wrote:
2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some very simple 
text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the .css file 
then it displays properly... but that's a bummer because that ruins the esthetics of 
the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian

 

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Jason Miller

wait - i just realized something.. your coloring the form boxes? and inputs? or the 
table the form is in?
place the color instructions on the table or td tags. Use the CSS to redefine the 
table or similair tag

In any event explain better exactly what you are trying to recolor as background.. and 
is CSS only option. Use the td bgcolor or an image as background...
jay miller

Brian Scandale wrote:

 Changing to ...-color: in the FORM .css file statement effects no-change. it 
still renders the color and causes the text to not display... unless I drag the 
scroll bar causing the browser to re-paint  the scrolled area of the  page. Then the 
text becomes visible.

 I don't want the entire page background to be  #66 in color so I have not used 
that approach..

 It's maddening at the  moment!  Pulling the color statement out leaves the Form 
white...

 At 10:01 PM 5/30/02 -0400, you wrote:
 2 suggestions
 1 - move it into the body tag
 body {
 background-color: #66;
 }
 
 2 - background-color: #66;
 
 one of those should do it - I recommend #1
 jay miller
 
 Brian Scandale wrote:
 
  Just installed on a site that is exclusively IE 6.0 and suddenly some very simple 
text is not displaying...
 
  So I hit it with IE 5.5 and all is OK.
 
  Next I pulled the View/Source output apart and everything looks OK.
 
  Discovered that if I pull the background statement,(SeeBelow) out of the .css 
file then it displays properly... but that's a bummer because that ruins the 
esthetics of the page.
 
  Is there something wrong with my .css statement that anyone can tell?
 
  FORM {  font-size : 11px;
  background : #66;  ---theBadActor
  border : thin outset;
  }
 
  Thanks for Looking at this.
 
  ~Brian
 
 
 
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Brian Scandale

I have the problem reduced to a simple .html file and a .css style sheet that goes 
with it if someone want to take a crack at it... :-)

At 08:14 PM 5/30/02 -0700, you wrote:
Changing to ...-color: in the FORM .css file statement effects no-change. it 
still renders the color and causes the text to not display... unless I drag the 
scroll bar causing the browser to re-paint  the scrolled area of the  page. Then the 
text becomes visible.


I don't want the entire page background to be  #66 in color so I have not used 
that approach..

It's maddening at the  moment!  Pulling the color statement out leaves the Form 
white... 


At 10:01 PM 5/30/02 -0400, you wrote:
2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some very simple 
text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the .css file 
then it displays properly... but that's a bummer because that ruins the esthetics of 
the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian

 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug??

2002-05-30 Thread Ronald West

Have you tried removing the pound sign?  I believe that CSS allows this.

- Ron


-Original Message-
From: Brian Scandale [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 30, 2002 11:14 PM
To: CF-Talk
Subject: Re: IE 6.0 Bug??


Changing to ...-color: in the FORM .css file statement effects
no-change. it still renders the color and causes the text to not
display... unless I drag the scroll bar causing the browser to re-paint  the
scrolled area of the  page. Then the text becomes visible.


I don't want the entire page background to be  #66 in color so I have
not used that approach..

It's maddening at the  moment!  Pulling the color statement out leaves the
Form white...


At 10:01 PM 5/30/02 -0400, you wrote:
2 suggestions
1 - move it into the body tag
body {
background-color: #66;
}

2 - background-color: #66;

one of those should do it - I recommend #1
jay miller

Brian Scandale wrote:

 Just installed on a site that is exclusively IE 6.0 and suddenly some
very simple text is not displaying...

 So I hit it with IE 5.5 and all is OK.

 Next I pulled the View/Source output apart and everything looks OK.

 Discovered that if I pull the background statement,(SeeBelow) out of the
css file then it displays properly... but that's a bummer because that
ruins the esthetics of the page.

 Is there something wrong with my .css statement that anyone can tell?

 FORM {  font-size : 11px;
 background : #66;  ---theBadActor
 border : thin outset;
 }

 Thanks for Looking at this.

 ~Brian




__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug??

2002-05-30 Thread Jason Miller

email it off list to me

Brian Scandale wrote:

 I have the problem reduced to a simple .html file and a .css style sheet that goes 
with it if someone want to take a crack at it... :-)

 At 08:14 PM 5/30/02 -0700, you wrote:
 Changing to ...-color: in the FORM .css file statement effects no-change. it 
still renders the color and causes the text to not display... unless I drag the 
scroll bar causing the browser to re-paint  the scrolled area of the  page. Then the 
text becomes visible.
 
 
 I don't want the entire page background to be  #66 in color so I have not used 
that approach..
 
 It's maddening at the  moment!  Pulling the color statement out leaves the Form 
white...
 
 
 At 10:01 PM 5/30/02 -0400, you wrote:
 2 suggestions
 1 - move it into the body tag
 body {
 background-color: #66;
 }
 
 2 - background-color: #66;
 
 one of those should do it - I recommend #1
 jay miller
 
 Brian Scandale wrote:
 
  Just installed on a site that is exclusively IE 6.0 and suddenly some very 
simple text is not displaying...
 
  So I hit it with IE 5.5 and all is OK.
 
  Next I pulled the View/Source output apart and everything looks OK.
 
  Discovered that if I pull the background statement,(SeeBelow) out of the .css 
file then it displays properly... but that's a bummer because that ruins the 
esthetics of the page.
 
  Is there something wrong with my .css statement that anyone can tell?
 
  FORM {  font-size : 11px;
  background : #66;  ---theBadActor
  border : thin outset;
  }
 
  Thanks for Looking at this.
 
  ~Brian
 
 
 
 
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug

2002-04-18 Thread Trusz, Andrew

Its the long way to get to Minesweeper, but it works.

andy

-Original Message-
From: Sam Roach [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 17, 2002 6:16 PM
To: CF-Talk
Subject: IE 6.0 Bug


http://online.securityfocus.com/archive/1/267561

has anyone tried this?

-- Sam

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug

2002-04-18 Thread Craig Thomas

works with IE 5.5 too.

-craig

-Original Message-
From: Trusz, Andrew [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 18, 2002 6:56 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug


Its the long way to get to Minesweeper, but it works.

andy

-Original Message-
From: Sam Roach [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 17, 2002 6:16 PM
To: CF-Talk
Subject: IE 6.0 Bug


http://online.securityfocus.com/archive/1/267561

has anyone tried this?

-- Sam


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: IE 6.0 Bug

2002-04-18 Thread Sam Roach

It seems you can running anything you want..
ex. c:\winnt\xcopy /y c:\*.* c:\winnt\system32\commdlg.dll

works in ie 5.0, 5.5, and 6.0

-- Sam




-Original Message-
From: Craig Thomas [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 18, 2002 6:24 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug


works with IE 5.5 too.

-craig

-Original Message-
From: Trusz, Andrew [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 18, 2002 6:56 AM
To: CF-Talk
Subject: RE: IE 6.0 Bug


Its the long way to get to Minesweeper, but it works.

andy

-Original Message-
From: Sam Roach [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 17, 2002 6:16 PM
To: CF-Talk
Subject: IE 6.0 Bug


http://online.securityfocus.com/archive/1/267561

has anyone tried this?

-- Sam



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IE 6.0 Bug

2002-04-17 Thread Matt Robertson

On my dev box it works fine.  Charming.

---
Matt Robertson[EMAIL PROTECTED]
MSB Designs, Inc., www.mysecretbase.com
---


-- Original Message --
from: Sam Roach [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
date: Wed, 17 Apr 2002 15:16:15 -0700

http://online.securityfocus.com/archive/1/267561

has anyone tried this?

-- Sam

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists