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 ya....Telus 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>
  >  <title>Generic 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: 000000;
  > }
  >
  > .Bold_Normal_Text_Black
  > {
  >  font-family: Verdana, Geneva, Arial;
  >  font-size: 12px;
  >   font-weight: bold;
  >  color: 000000;
  > }
  >
  > 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
  > >
  > > > Ahhh....that 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: 000000
  > > > > > > }
  > > > > > >
  > > > > > > (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 : 000000;
  > > > > > > >     }
  > > > > > > >
  > > > > > > >     .Bold_Normal_Text_Black
  > > > > > > >     {
  > > > > > > >      font-family : Verdana, Geneva, Arial;
  > > > > > > >      font-size : 12px;
  > > > > > > >       font-weight : bold;
  > > > > > > >      color : 000000;
  > > > > > > >     }
  > > > > > > >
  > > > > > > > </STYLE>
  > > > > > > >
  > > > > > > > The Normal_Text_Black element will display as normal 12 
  > > > > > > > point
  > > > > > Times New
  > > > > > > > Roman text.  If I move it down and replace it with the 
  > > > > > > > Bold_Normal_Text_Black element, then all text using that
  > > > > > element will
  > > > > > > > display as normal 12 point Times New Roman text!!  This
  > > > > > happens for ANY
  > > > > > > > elemnt I place at the top of the stylesheet.
  > > > > > > >
  > > > > > > > Does anybody know what might be going on here?
  > > > > > > >
  > > > > > > > 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
  > > > > > > >
  > > > > > > >
  > > > > > >
  > > > > >
  > > > >
  > > >
  > >
  > 

  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to