Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active December 16, 2018 06:10
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 radarin/442bc31845993aa7a47e0faadd768431 to your computer and use it in GitHub Desktop.
Save radarin/442bc31845993aa7a47e0faadd768431 to your computer and use it in GitHub Desktop.
CSS Anpassungen im Wordpress Backend
add_action('admin_head', 'my_custom_admin_css');
function my_custom_admin_css() {
echo '<style>
/* Schriften anpassen */
body, td, textarea, input, select {
font-family: "Lucida Grande";
font-size: 12px; }
/* oberen Balken färben */
#wpadminbar{ background: #5FB404; }
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment