Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Last active January 4, 2016 08:49

Revisions

  1. jonbellah revised this gist Jan 24, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion functions.php
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    function my_custom_admin_styles() {
    echo '<style type="text/css">
    .customcss {
    .your-custom-css {
    height: 300px;
    overflow: scroll;
    border: 1px solid #ddd;
  2. jonbellah created this gist Jan 24, 2014.
    10 changes: 10 additions & 0 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    function my_custom_admin_styles() {
    echo '<style type="text/css">
    .customcss {
    height: 300px;
    overflow: scroll;
    border: 1px solid #ddd;
    padding: 15px;}
    </style>';
    }
    add_action('admin_head', 'my_custom_admin_styles');