Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Last active January 4, 2016 08:49
Show Gist options
  • Save jonbellah/8597547 to your computer and use it in GitHub Desktop.
Save jonbellah/8597547 to your computer and use it in GitHub Desktop.
Custom Admin Styles in WordPress
function my_custom_admin_styles() {
echo '<style type="text/css">
.your-custom-css {
height: 300px;
overflow: scroll;
border: 1px solid #ddd;
padding: 15px;}
</style>';
}
add_action('admin_head', 'my_custom_admin_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment