SOLVED Re: OT: style sheet weirdness

2003-01-09 Thread Bryan Stevenson
OK...the issue was the use of underscores in the style element
names...Netscape doesn't like it (at least ver. 4.07)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, January 09, 2003 2:25 PM
Subject: Re: OT: style sheet weirdness


 Well Billy Bob...that's Shaw for yaTelus ADSL for me ;-)

 Does anyone know why a style sheet would be completely ignored in Netscape
 4.07?

 I'm using this to include the sheet:
 head
  titleGeneric CSS Examples/title
   link href=generic_styles.css rel=stylesheet type=text/css
 /head

 and a style sheet snippet as follows (not wrapped in a STYLE tag):
 .Normal_Text_Black
 {
  font-family: Verdana, Geneva, Arial;
  font-size: 12px;
  color: 00;
 }

 .Bold_Normal_Text_Black
 {
  font-family: Verdana, Geneva, Arial;
  font-size: 12px;
   font-weight: bold;
  color: 00;
 }

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 2:06 PM
 Subject: Re: OT: style sheet weirdness


  It's my webmail client.  Keeps putting my email address as my name even
 though I tell it to use my name.
 
  I'm actually Billy Bob Thorton :)
 
  - Original Message -
  From: Bryan Stevenson [EMAIL PROTECTED]
  Date: Thursday, January 9, 2003 3:08 pm
  Subject: Re: OT: style sheet weirdness
 
   Ahhhthat did the trick.thanks [EMAIL PROTECTED] whoever you are
   (yer a
   Canuck and that's good enough for me) ;-)
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development
   Electric Edge Systems Group Inc.
   t. 250.920.8830
   e. [EMAIL PROTECTED]
  
   -
   Macromedia Associate Partner
   www.macromedia.com
   -
   Vancouver Island ColdFusion Users Group
   Founder  Director
   www.cfug-vancouverisland.com
   - Original Message -
   From: [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Thursday, January 09, 2003 1:44 PM
   Subject: Re: OT: style sheet weirdness
  
  
Is this a style sheet you're including via the link tag?  If
   so, then
   you need to remove the style tags.
   
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
Date: Thursday, January 9, 2003 2:42 pm
Subject: Re: OT: style sheet weirdness
   
 Nope...removing semi-colons did not help...but thanks ;-)

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Christian Cantrell [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 1:21 PM
 Subject: Re: OT: style sheet weirdness


  Try removing the semicolons from the last properites in each
   of your
  classes.  For instance:
 
  .Normal_Text_Black
  {
   font-family: Verdana, Geneva, Arial;
   font-size: 12px;
   color: 00
  }
 
  (No semicolon after color.)
 
  Christian
 
  On Thursday, January 9, 2003, at 01:50 PM, Bryan Stevenson
   wrote:  
   Hi All,
  
   I've got a stylesheet with a bunch of text related
   elements in
 it. No
   matter
   which text element I place first in the list of elements, it
 will be
   ignored.
  
   For example:
  
   STYLE TYPE=text/css
  
   /* TEXT */
  
   .Normal_Text_Black
   {
font-family : Verdana, Geneva, Arial;
font-size : 12px;
color : 00;
   }
  
   .Bold_Normal_Text_Black
   {
font-family : Verdana, Geneva, Arial;
font-size : 12px;
 font-weight : bold;
color : 00;
   

Re: SOLVED Re: OT: style sheet weirdness

2003-01-09 Thread Dina Hess
Netscape 4 doesn't like background-color: transparent; either, even though the W3C 
validator OKs it. If you use anything other than transparent, it's fine though.

- Original Message - 
  From: Ryan Kime 
  To: CF-Talk 
  Sent: Thursday, January 09, 2003 4:43 PM
  Subject: RE: SOLVED Re: OT: style sheet weirdness


  FYI, I believe using underscores is against CSS spec (not sure which
  one(s))...use dashes instead.

  -Original Message-
  From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
  Sent: Thursday, January 09, 2003 4:37 PM
  To: CF-Talk
  Subject: SOLVED Re: OT: style sheet weirdness


  OK...the issue was the use of underscores in the style element
  names...Netscape doesn't like it (at least ver. 4.07)

  Bryan Stevenson B.Comm.
  VP  Director of E-Commerce Development
  Electric Edge Systems Group Inc.
  t. 250.920.8830
  e. [EMAIL PROTECTED]

  -
  Macromedia Associate Partner
  www.macromedia.com
  -
  Vancouver Island ColdFusion Users Group
  Founder  Director
  www.cfug-vancouverisland.com
  - Original Message -
  From: Bryan Stevenson [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Thursday, January 09, 2003 2:25 PM
  Subject: Re: OT: style sheet weirdness


   Well Billy Bob...that's Shaw for yaTelus ADSL for me ;-)
  
   Does anyone know why a style sheet would be completely ignored in 
   Netscape 4.07?
  
   I'm using this to include the sheet:
   head
titleGeneric CSS Examples/title
 link href=generic_styles.css rel=stylesheet type=text/css 
   /head
  
   and a style sheet snippet as follows (not wrapped in a STYLE tag): 
   .Normal_Text_Black {
font-family: Verdana, Geneva, Arial;
font-size: 12px;
color: 00;
   }
  
   .Bold_Normal_Text_Black
   {
font-family: Verdana, Geneva, Arial;
font-size: 12px;
 font-weight: bold;
color: 00;
   }
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development
   Electric Edge Systems Group Inc.
   t. 250.920.8830
   e. [EMAIL PROTECTED]
  
   -
   Macromedia Associate Partner
   www.macromedia.com
   -
   Vancouver Island ColdFusion Users Group
   Founder  Director
   www.cfug-vancouverisland.com
   - Original Message -
   From: [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Thursday, January 09, 2003 2:06 PM
   Subject: Re: OT: style sheet weirdness
  
  
It's my webmail client.  Keeps putting my email address as my name 
even
   though I tell it to use my name.
   
I'm actually Billy Bob Thorton :)
   
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
Date: Thursday, January 9, 2003 3:08 pm
Subject: Re: OT: style sheet weirdness
   
 Ahhhthat did the trick.thanks [EMAIL PROTECTED] whoever you are 
 (yer a Canuck and that's good enough for me) ;-)

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 1:44 PM
 Subject: Re: OT: style sheet weirdness


  Is this a style sheet you're including via the link tag?  If
 so, then
 you need to remove the style tags.
 
  - Original Message -
  From: Bryan Stevenson [EMAIL PROTECTED]
  Date: Thursday, January 9, 2003 2:42 pm
  Subject: Re: OT: style sheet weirdness
 
   Nope...removing semi-colons did not help...but thanks ;-)
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development
   Electric Edge Systems Group Inc.
   t. 250.920.8830
   e. [EMAIL PROTECTED]
  
   -
   Macromedia Associate Partner
   www.macromedia.com
   -
   Vancouver Island ColdFusion Users Group
   Founder  Director
   www.cfug-vancouverisland.com
   - Original Message -
   From: Christian Cantrell [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Thursday, January 09, 2003 1:21 PM
   Subject: Re: OT: style sheet weirdness
  
  
Try removing the semicolons from the last properites in each
 of your
classes.  For instance:
   
.Normal_Text_Black
{
 font-family: Verdana, Geneva

RE: SOLVED Re: OT: style sheet weirdness

2003-01-09 Thread Ryan Kime
FYI, I believe using underscores is against CSS spec (not sure which
one(s))...use dashes instead.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 09, 2003 4:37 PM
To: CF-Talk
Subject: SOLVED Re: OT: style sheet weirdness


OK...the issue was the use of underscores in the style element
names...Netscape doesn't like it (at least ver. 4.07)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, January 09, 2003 2:25 PM
Subject: Re: OT: style sheet weirdness


 Well Billy Bob...that's Shaw for yaTelus ADSL for me ;-)

 Does anyone know why a style sheet would be completely ignored in 
 Netscape 4.07?

 I'm using this to include the sheet:
 head
  titleGeneric CSS Examples/title
   link href=generic_styles.css rel=stylesheet type=text/css 
 /head

 and a style sheet snippet as follows (not wrapped in a STYLE tag): 
 .Normal_Text_Black {
  font-family: Verdana, Geneva, Arial;
  font-size: 12px;
  color: 00;
 }

 .Bold_Normal_Text_Black
 {
  font-family: Verdana, Geneva, Arial;
  font-size: 12px;
   font-weight: bold;
  color: 00;
 }

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 2:06 PM
 Subject: Re: OT: style sheet weirdness


  It's my webmail client.  Keeps putting my email address as my name 
  even
 though I tell it to use my name.
 
  I'm actually Billy Bob Thorton :)
 
  - Original Message -
  From: Bryan Stevenson [EMAIL PROTECTED]
  Date: Thursday, January 9, 2003 3:08 pm
  Subject: Re: OT: style sheet weirdness
 
   Ahhhthat did the trick.thanks [EMAIL PROTECTED] whoever you are 
   (yer a Canuck and that's good enough for me) ;-)
  
   Bryan Stevenson B.Comm.
   VP  Director of E-Commerce Development
   Electric Edge Systems Group Inc.
   t. 250.920.8830
   e. [EMAIL PROTECTED]
  
   -
   Macromedia Associate Partner
   www.macromedia.com
   -
   Vancouver Island ColdFusion Users Group
   Founder  Director
   www.cfug-vancouverisland.com
   - Original Message -
   From: [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Thursday, January 09, 2003 1:44 PM
   Subject: Re: OT: style sheet weirdness
  
  
Is this a style sheet you're including via the link tag?  If
   so, then
   you need to remove the style tags.
   
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
Date: Thursday, January 9, 2003 2:42 pm
Subject: Re: OT: style sheet weirdness
   
 Nope...removing semi-colons did not help...but thanks ;-)

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com
 - Original Message -
 From: Christian Cantrell [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 1:21 PM
 Subject: Re: OT: style sheet weirdness


  Try removing the semicolons from the last properites in each
   of your
  classes.  For instance:
 
  .Normal_Text_Black
  {
   font-family: Verdana, Geneva, Arial;
   font-size: 12px;
   color: 00
  }
 
  (No semicolon after color.)
 
  Christian
 
  On Thursday, January 9, 2003, at 01:50 PM, Bryan Stevenson
   wrote:  
   Hi All,
  
   I've got a stylesheet with a bunch of text related
   elements in
 it. No
   matter
   which text element I place first in the list of elements, 
   it
 will be
   ignored.
  
   For example:
  
   STYLE TYPE=text/css
  
   /* TEXT */
  
   .Normal_Text_Black
   {
font-family : Verdana