On Oct 17, 2008, at 5:09 PM, Kirk M wrote:

Every time I update 2.7-almost I have to go in and change line 663 (currently) in "wp-admin.css" to something significantly less than 36px (20px in my case)

Try something like this. :)

<?php

/*
Plugin Name: Reduce Admin Header Font Size
Version 0.1
*/

add_action( 'admin_head', 'shrink_admin_header' )

function shrink_admin_header() {
        echo '#wphead h1 { font-size: 20px }';
}

?>


Actually, it looks like they changed it to 22px, so this may be moot by this point....

Stephen

--
Stephen Rider
<http://striderweb.com/>



_______________________________________________
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers

Reply via email to