[wp-testers] Cut admin blog title to less than 36px?

Stephen Rider wp-hackers at striderweb.com
Sat Oct 18 15:53:39 GMT 2008


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/>





More information about the wp-testers mailing list