Hoy 9 de Abril se celebra el CSS Naked Day, una iniciativa de Dustin Diaz que busca promover el uso de estándares.
Durante 24 horas esta web va a estar sin estilos CSS, el blog estará, literalmente, desnudo a sus ojos. XD
Para apoyar la causa, tan agreguen a sus blogs el siguiente codigo en la cabecera o si usan Wordpress, ubiquen el archivo header.php en la carpeta del theme que esten usando.

PHP:
  1. <?php
  2. function is_Naked_Day() {
  3.     //Si no usas Wordpress reemplaza "get_settings('gmt_offset')" por tu zona horaria (ej: -5,-4,-3, etc).
  4.     $offset = get_settings('gmt_offset')*60*60;
  5.    
  6.     $day = (int)gmdate('j',time()+$offset);
  7.     $month = (int)gmdate('m',time()+$offset);
  8.  
  9.     return ( $day == 9 && $month == 4 );
  10. }
  11. ?>
  12. <?php if(!is_Naked_Day()) : ?>
  13. <style type="text/css">
  14. <!--
  15. @import"/css/your_style_sheet.css";
  16. -->
  17. </style>
  18. <?php endif; ?>

Y debajo del Body:

PHP:
  1. <?php if(is_Naked_Day()) : ?>
  2. <h3>¿Qué ha pasado con el diseño?</h3>
  3. <p>Si quieres saberlo visita: <a href="http://naked.dustindiaz.com/">CSS Naked Day</a>.</p>
  4. <?php endif; ?>

hasta otro desnudo. ;)