Last active
January 4, 2016 08:49
-
-
Save jonbellah/8597547 to your computer and use it in GitHub Desktop.
Custom Admin Styles in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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