Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Created August 8, 2018 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfsarmento/ebe450217dbd798348762377e404f3ee to your computer and use it in GitHub Desktop.
Save nfsarmento/ebe450217dbd798348762377e404f3ee to your computer and use it in GitHub Desktop.
Add custom css to WP Admin
add_action('admin_head', 'ns_custom_style');
function ns_custom_style() {
echo '<style>
body, td, textarea, input, select {
font-family: "Lucida Grande";
font-size: 12px;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment