Admin Custom CSS

 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

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article