Add this to the functions.php file of your active theme to inject custom CSS to the admin area of your site.
add_action('admin_head', 'my_custom_admin_css'); function my_custom_admin_css() { echo '<style> body, td, textarea, input, select { font-family: "Lucida Grande"; font-size: 12px; } </style>'; }
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article