frankyonnetti
5/25/2016 - 8:52 PM

#wordpress add inline styles to the admin pages in functions.php

WordPress - add inline styles to the admin pages in functions.php #wordpress

/**
 * Admin styles.
 *
 */
function custom_admin_styles() {
  echo '<style>
    .div {
      border-top-color: #555;
    }
  </style>';
}
add_action('admin_head', 'custom_admin_styles');