Skip to content

Instantly share code, notes, and snippets.

@ncesar
Created February 21, 2019 18:17
Show Gist options
  • Save ncesar/da46bc80106b4664698df38d1703d063 to your computer and use it in GitHub Desktop.
Save ncesar/da46bc80106b4664698df38d1703d063 to your computer and use it in GitHub Desktop.
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>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment