Ver Mensaje Individual
  #9 (permalink)  
Antiguo 07/07/2010, 11:12
Avatar de Gustavo72
Gustavo72
 
Fecha de Ingreso: abril-2008
Ubicación: -32.956045,-60.661355
Mensajes: 197
Antigüedad: 16 años
Puntos: 9
Respuesta: Fecha quiero un minúscula todos

También podés pasarla a minúsculas en el estilo html o en el css:

Código HTML:
Ver original
  1. <span style="text-transform: lowercase"><?= strftime("%A, %d de %B de %Y") ?></span>

ó:

Código HTML:
Ver original
  1. <span class="fecha"><?= strftime("%A, %d de %B de %Y") ?></span>

Código CSS:
Ver original
  1. .fecha {
  2.      text-transform: lowercase;
  3. }
__________________
Saludos.

Gustavo