Created
October 27, 2016 21:47
-
-
Save contempoinc/ef9ab6170763bdee5b4ee96c764e783e to your computer and use it in GitHub Desktop.
Custom Admin CSS
This file contains hidden or 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
<?php | |
function custom_admin_css() { | |
echo '<style>'; | |
echo 'td.status a.for-sale { background: #34495e;}'; | |
echo '</style>'; | |
} | |
add_action('admin_head', 'custom_admin_css'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment