Apply Custom CSS to Admin Area Wordpress Guru › Apply Custom CSS to Admin Area › +39.0645491071 May 22, 2015 By Ovidiu Purdea Leave a Comment Add to the functions.php file: add_action('admin_head', 'my_custom_fonts'); function my_custom_fonts() { echo '<style> body, td, textarea, input, select { font-family: "Lucida Grande"; font-size: 12px; } </style>'; }
Leave a Reply