Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-27 Thread Philip Thompson

On Apr 26, 2007, at 6:31 AM, Jonathan wrote:


Thufir wrote:

When I print out my list of apartments, everything after


Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread Tijnema !

On 4/26/07, tedd <[EMAIL PROTECTED]> wrote:

At 2:01 PM -0400 4/26/07, Robert Cummings wrote:
>On Thu, 2007-04-26 at 13:19 -0400, tedd wrote:
>
>  > .grey { color: grey; }  <-- external, not embedded.
>
>Oh dear, that's terrible, everyone knows you should use dropped
>vertically aligned braces in CSS:
>
>.grey
>{
> color: grey;
>}
>
>>   My Grey Text :) 
>
>That's disgusting... now what happens if you want to change the text to
>blue? You either have a class called grey that makes the text blue, or
>you have to change all the HTML where you used class="grey" which puts
>you squarely back into the realm of why the font tag was deprecated.

Negatory there grasshopper. You use the color rule for any tag that
exhibits color AND have as many colors as you want -- it's a simperer
way..

http://www.wordreference.com/definition/simperer   <-- Yeah...
SIMPERER  *giggle*

Plus, you didn't do the braces right. They should be:

.grey
   {
   color: grey;
   }

In seriousness, I /do/ use colors that way -- and it works for me.

Cheers,

tedd


For such things, i think you could better do this:
My Grey Text :) 

Tijnema

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread tedd

At 2:01 PM -0400 4/26/07, Robert Cummings wrote:

On Thu, 2007-04-26 at 13:19 -0400, tedd wrote:

 > .grey { color: grey; }  <-- external, not embedded.

Oh dear, that's terrible, everyone knows you should use dropped
vertically aligned braces in CSS:

.grey
{
color: grey;
}


  My Grey Text :) 


That's disgusting... now what happens if you want to change the text to
blue? You either have a class called grey that makes the text blue, or
you have to change all the HTML where you used class="grey" which puts
you squarely back into the realm of why the font tag was deprecated.


Negatory there grasshopper. You use the color rule for any tag that 
exhibits color AND have as many colors as you want -- it's a simperer 
way..


http://www.wordreference.com/definition/simperer   <-- Yeah... 
SIMPERER  *giggle*


Plus, you didn't do the braces right. They should be:

.grey
   {
   color: grey;
   }

In seriousness, I /do/ use colors that way -- and it works for me.

Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread Robert Cummings
On Thu, 2007-04-26 at 13:19 -0400, tedd wrote:
> At 3:33 PM +0200 4/26/07, Tijnema ! wrote:
> >On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:
> >>Tijnema ! wrote:
> >>>  On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
>    is depreciated and shouldn't be used anyhow.  Use styles
>   instead.
> >>>
> >>>  I use combination of both :)
> >>  > 
> >>>  font.grey { color: grey; }
> >>>  
> >>  >  My Grey Text :) 
> >>
> >>If you don't mind me saying so, that's daft. You should be using 
> >>tags here, not the deprecated  tags.
> >>
> >>-Stut
> >
> >Both work fine, should i really care?
> >
> >Tijnema
> 
> And you're the one who told me to switch my DOCTYPE to XHTML???
> 
> You go through all the trouble of using css and then you don't really 
> use it. Try this:
> 
> .grey { color: grey; }  <-- external, not embedded.

Oh dear, that's terrible, everyone knows you should use dropped
vertically aligned braces in CSS:

.grey
{
color: grey;
}

>  My Grey Text :) 

That's disgusting... now what happens if you want to change the text to
blue? You either have a class called grey that makes the text blue, or
you have to change all the HTML where you used class="grey" which puts
you squarely back into the realm of why the font tag was deprecated.

> That's much simperer and it validates.

Yeah... SIMPERER  *giggle*

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread Tijnema !

On 4/26/07, tedd <[EMAIL PROTECTED]> wrote:

At 3:33 PM +0200 4/26/07, Tijnema ! wrote:
>On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:
>>Tijnema ! wrote:
>>>  On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
   is depreciated and shouldn't be used anyhow.  Use styles
  instead.
>>>
>>>  I use combination of both :)
>>  > 
>>>  font.grey { color: grey; }
>>>  
>>  >  My Grey Text :) 
>>
>>If you don't mind me saying so, that's daft. You should be using 
>>tags here, not the deprecated  tags.
>>
>>-Stut
>
>Both work fine, should i really care?
>
>Tijnema

And you're the one who told me to switch my DOCTYPE to XHTML???

You go through all the trouble of using css and then you don't really
use it. Try this:

.grey { color: grey; }  <-- external, not embedded.

 My Grey Text :) 

That's much simperer and it validates.

Cheers,

tedd


I meant to say that every new page you write should be XHTML 1.0
Strict, not the pages you already have...
Just like i'm doing this now :)

Tijnema




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread tedd

At 3:33 PM +0200 4/26/07, Tijnema ! wrote:

On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:

Tijnema ! wrote:

 On 4/26/07, Al <[EMAIL PROTECTED]> wrote:

  is depreciated and shouldn't be used anyhow.  Use styles
 instead.


 I use combination of both :)

 > 
 font.grey { color: grey; }
 

 >  My Grey Text :) 

If you don't mind me saying so, that's daft. You should be using 
tags here, not the deprecated  tags.

-Stut


Both work fine, should i really care?

Tijnema


And you're the one who told me to switch my DOCTYPE to XHTML???

You go through all the trouble of using css and then you don't really 
use it. Try this:


.grey { color: grey; }  <-- external, not embedded.

 My Grey Text :) 

That's much simperer and it validates.

Cheers,

tedd


--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

On Thu, 2007-04-26 at 15:38 +0200, Tijnema ! wrote:
> On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:
> > Tijnema ! wrote:
> > > On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:
> > >> Tijnema ! wrote:
> > >> > On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
> > >> >>  is depreciated and shouldn't be used anyhow.  Use styles
> > >> >> instead.
> > >> >
> > >> > I use combination of both :)
> > >> > 
> > >> > font.grey { color: grey; }
> > >> > 
> > >> >  My Grey Text :) 
> > >>
> > >> If you don't mind me saying so, that's daft. You should be using 
> > >> tags here, not the deprecated  tags.
> > >>
> > >> -Stut
> > >
> > > Both work fine, should i really care?
> >
> > Using a screwdriver to hammer in a nail will usually "work fine", but
> > that doesn't mean you should be doing it.
> >
> > -Stut
> 
> Hmm, maybe i'll use it in my upcoming scripts, but i'm not gonna
> change all my 500 made scripts :P

DO EEET!!! :B

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:

Tijnema ! wrote:
> On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:
>> Tijnema ! wrote:
>> > On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
>> >>  is depreciated and shouldn't be used anyhow.  Use styles
>> >> instead.
>> >
>> > I use combination of both :)
>> > 
>> > font.grey { color: grey; }
>> > 
>> >  My Grey Text :) 
>>
>> If you don't mind me saying so, that's daft. You should be using 
>> tags here, not the deprecated  tags.
>>
>> -Stut
>
> Both work fine, should i really care?

Using a screwdriver to hammer in a nail will usually "work fine", but
that doesn't mean you should be doing it.

-Stut


Hmm, maybe i'll use it in my upcoming scripts, but i'm not gonna
change all my 500 made scripts :P

Tijnema


>> >> Dave Goodchild wrote:
>> >> > View the source, you have this:
>> >> >
>> >> > 
>> >> >
>> >> > which is not closed, therefore everything after it will be blue.
>> >> >
>> >>
>> >> --
>> >> PHP General Mailing List (http://www.php.net/)
>> >> To unsubscribe, visit: http://www.php.net/unsub.php
>> >>
>> >>
>> >
>>
>>




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


Tijnema ! wrote:

On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:

Tijnema ! wrote:
> On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
>>  is depreciated and shouldn't be used anyhow.  Use styles
>> instead.
>
> I use combination of both :)
> 
> font.grey { color: grey; }
> 
>  My Grey Text :) 

If you don't mind me saying so, that's daft. You should be using 
tags here, not the deprecated  tags.

-Stut


Both work fine, should i really care?


Using a screwdriver to hammer in a nail will usually "work fine", but 
that doesn't mean you should be doing it.


-Stut


>> Dave Goodchild wrote:
>> > View the source, you have this:
>> >
>> > 
>> >
>> > which is not closed, therefore everything after it will be blue.
>> >
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


On 4/26/07, Stut <[EMAIL PROTECTED]> wrote:

Tijnema ! wrote:
> On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
>>  is depreciated and shouldn't be used anyhow.  Use styles
>> instead.
>
> I use combination of both :)
> 
> font.grey { color: grey; }
> 
>  My Grey Text :) 

If you don't mind me saying so, that's daft. You should be using 
tags here, not the deprecated  tags.

-Stut


Both work fine, should i really care?

Tijnema


>> Dave Goodchild wrote:
>> > View the source, you have this:
>> >
>> > 
>> >
>> > which is not closed, therefore everything after it will be blue.
>> >
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


Tijnema ! wrote:

On 4/26/07, Al <[EMAIL PROTECTED]> wrote:
 is depreciated and shouldn't be used anyhow.  Use styles 
instead.


I use combination of both :)

font.grey { color: grey; }

 My Grey Text :) 


If you don't mind me saying so, that's daft. You should be using  
tags here, not the deprecated  tags.


-Stut


Dave Goodchild wrote:
> View the source, you have this:
>
> 
>
> which is not closed, therefore everything after it will be blue.
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php






--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


On 4/26/07, Al <[EMAIL PROTECTED]> wrote:

 is depreciated and shouldn't be used anyhow.  Use styles instead.


I use combination of both :)

font.grey { color: grey; }

 My Grey Text :) 

Tijnema


Dave Goodchild wrote:
> View the source, you have this:
>
> 
>
> which is not closed, therefore everything after it will be blue.
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


 is depreciated and shouldn't be used anyhow.  Use styles instead.

Dave Goodchild wrote:

View the source, you have this:



which is not closed, therefore everything after it will be blue.



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: everything printed suddenly has blue text, as if were a link


View the source, you have this:



which is not closed, therefore everything after it will be blue.