Skip to content

Instantly share code, notes, and snippets.

@laras126
Created March 4, 2011 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laras126/854657 to your computer and use it in GitHub Desktop.
Save laras126/854657 to your computer and use it in GitHub Desktop.
change wp editor style
<?php
function change_editor_font(){
echo "<style type='text/css'>
#editorcontainer textarea#content {
font-family: Monaco, Consolas, \"Andale Mono\", \"Dejavu Sans Mono\", monospace;
font-size:14px;
color:#333;
}
</style>";
} add_action("admin_print_styles", "change_editor_font");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment