If we call this:
<?php echo $form->label($model,'Hello my friend'); ?>
We get output it on the viewport the following:
"Hello My Friend"
On the CSS I have nothing that says capitalize, anywhere.
How can we change this behavior ?
I've tried to edit the CSS and make:
label {
text-transform: none !important;
}
No luck.
How can we have
Hello my friend
printed exactly as we write it ?
label()is supposed to an attribute name, is your attribute's nameHello my friend? – bool.dev Aug 29 '12 at 16:40