Add to the functions.php file:
1 2 3 4 5 6 7 8 9 10 |
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>'; } |
Lascia un commento