Re: echoing a bigger font

2010-06-06 Thread piousbox
Well, you don't have a print or an echo statement there. It would help
to do the following:



Which is the same as:



(given that your Apache setup allows that shorthand.)

_V

On Jun 5, 7:58 am, ytbryan  wrote:
> Hi all,
>
> If i am printing out a variable $result like the below in my view
>
> 
>
> How can I make the printed value appear bigger? I tried to surround
> the value with  or control the css. But it don't help.
>
> Thanks!
> Bryan

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread ytbryan
Great! Thanks Calvin for pointing that out to me.
Thanks Jonathon. I will read up on CSS.

On Jun 6, 2:45 am, Jonathon Musters  wrote:
> Well yes but this goes back to an understanding of CSS and the types of
> elements they are..
>
> On Sat, Jun 5, 2010 at 1:08 PM, calvin  wrote:
> > The selector should be changed to p#largeText, no space, and that
> > should work.
>
> > And don't use font tags or b/i/u tags.
>
> > On Jun 5, 6:22 am, Jonathon Musters  wrote:
> > > use My Text HERE
>
> > > in css
>
> > > p #largeText {
>
> > > font-size: 20px;
>
> > > }
>
> > > and you will get what you are looking for
>
> > > On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:
> > > > Hi all,
>
> > > > If i am printing out a variable $result like the below in my view
>
> > > > 
>
> > > > How can I make the printed value appear bigger? I tried to surround
> > > > the value with  or control the css. But it don't help.
>
> > > > Thanks!
> > > > Bryan
>
> > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp
> > others
> > > > with their CakePHP related questions.
>
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "CakePHP" group.
> > > > To post to this group, send email to cake-php@googlegroups.com
> > > > To unsubscribe from this group, send email to
> > > > cake-php+unsubscr...@googlegroups.com
> > >For
> > more options, visit this group at
> > > >http://groups.google.com/group/cake-php?hl=en
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.comFor
> >  more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread Jonathon Musters
Well yes but this goes back to an understanding of CSS and the types of
elements they are..


On Sat, Jun 5, 2010 at 1:08 PM, calvin  wrote:

> The selector should be changed to p#largeText, no space, and that
> should work.
>
> And don't use font tags or b/i/u tags.
>
> On Jun 5, 6:22 am, Jonathon Musters  wrote:
> > use My Text HERE
> >
> > in css
> >
> > p #largeText {
> >
> > font-size: 20px;
> >
> > }
> >
> > and you will get what you are looking for
> >
> > On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:
> > > Hi all,
> >
> > > If i am printing out a variable $result like the below in my view
> >
> > > 
> >
> > > How can I make the printed value appear bigger? I tried to surround
> > > the value with  or control the css. But it don't help.
> >
> > > Thanks!
> > > Bryan
> >
> > > Check out the new CakePHP Questions sitehttp://cakeqs.organd help
> others
> > > with their CakePHP related questions.
> >
> > > You received this message because you are subscribed to the Google
> Groups
> > > "CakePHP" group.
> > > To post to this group, send email to cake-php@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > cake-php+unsubscr...@googlegroups.com
> >For
> more options, visit this group at
> > >http://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread calvin
The selector should be changed to p#largeText, no space, and that
should work.

And don't use font tags or b/i/u tags.

On Jun 5, 6:22 am, Jonathon Musters  wrote:
> use My Text HERE
>
> in css
>
> p #largeText {
>
> font-size: 20px;
>
> }
>
> and you will get what you are looking for
>
> On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:
> > Hi all,
>
> > If i am printing out a variable $result like the below in my view
>
> > 
>
> > How can I make the printed value appear bigger? I tried to surround
> > the value with  or control the css. But it don't help.
>
> > Thanks!
> > Bryan
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.comFor
> >  more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread Jonathon Musters
Well then its time to learn css then to solve this as I gave you the answer



On 6/5/10, ytbryan  wrote:
> nope that doesn't help.
>
> note that the text is echo out using 
>
> On Jun 5, 9:22 pm, Jonathon Musters  wrote:
>> use My Text HERE
>>
>> in css
>>
>> p #largeText {
>>
>> font-size: 20px;
>>
>> }
>>
>> and you will get what you are looking for
>>
>> On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:
>> > Hi all,
>>
>> > If i am printing out a variable $result like the below in my view
>>
>> > 
>>
>> > How can I make the printed value appear bigger? I tried to surround
>> > the value with  or control the css. But it don't help.
>>
>> > Thanks!
>> > Bryan
>>
>> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
>> > with their CakePHP related questions.
>>
>> > You received this message because you are subscribed to the Google
>> > Groups
>> > "CakePHP" group.
>> > To post to this group, send email to cake-php@googlegroups.com
>> > To unsubscribe from this group, send email to
>> > cake-php+unsubscr...@googlegroups.comFor
>> > more options, visit this group at
>> >http://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread AD7six


On Jun 5, 4:15 pm, ytbryan  wrote:
> nope that doesn't help.
>
> note that the text is echo out using 

How about moving your head closer to the screen?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread ytbryan
nope that doesn't help.

note that the text is echo out using 

On Jun 5, 9:22 pm, Jonathon Musters  wrote:
> use My Text HERE
>
> in css
>
> p #largeText {
>
> font-size: 20px;
>
> }
>
> and you will get what you are looking for
>
> On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:
> > Hi all,
>
> > If i am printing out a variable $result like the below in my view
>
> > 
>
> > How can I make the printed value appear bigger? I tried to surround
> > the value with  or control the css. But it don't help.
>
> > Thanks!
> > Bryan
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.comFor
> >  more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: echoing a bigger font

2010-06-05 Thread Jonathon Musters
use My Text HERE


in css

p #largeText {

font-size: 20px;
}

and you will get what you are looking for




On Sat, Jun 5, 2010 at 8:58 AM, ytbryan  wrote:

> Hi all,
>
> If i am printing out a variable $result like the below in my view
>
> 
>
>
> How can I make the printed value appear bigger? I tried to surround
> the value with  or control the css. But it don't help.
>
>
> Thanks!
> Bryan
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


echoing a bigger font

2010-06-05 Thread ytbryan
Hi all,

If i am printing out a variable $result like the below in my view




How can I make the printed value appear bigger? I tried to surround
the value with  or control the css. But it don't help.


Thanks!
Bryan

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en