Am Mittwoch, 12. März 2008 08:47:43 schrieb Nikolay Bachiyski:
> Using a plugin, you can affect css by adding more css after it. The
> wp_head hook lets you add html code in the end of the head tag on
> non-admin WordPress pages. Here is the code, which out in ca.php will
> do the trick:
>
> ca.php:
>
> function catalan_capitalization_fix() {
> ?>
>     <style type="text/css">
>         #wp-calendar th {
>             text-transform: none !important;
>         }
>     </style>
> <?php
> }
>
> add_action('wp_head', 'catalan_capitalization_fix');

thanx a lot, Nikolay - that is a very useful information!

Best regards,

Francesc
_______________________________________________
wp-polyglots mailing list
[email protected]
http://lists.automattic.com/mailman/listinfo/wp-polyglots

Reply via email to