Advertisement
Guest User

Logon CSS

a guest
May 20th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Logon CSS
  4. Plugin URI: http://wordpress.org/support/topic/plugin-semisecure-login-reimagined-how-to-change-login-page-text-color
  5. Description: Add some css to the logon screen
  6. Author: Cubecolour
  7. Version: 1.0
  8. Author URI: http://cubecolour.co.uk/
  9. License: GPL2
  10. */
  11.  
  12. add_action('login_head', 'my_custom_login_css');
  13. function my_custom_login_css() {
  14.     echo '<style type="text/css">#semisecure-message {color: #ccc;}
  15.     </style>';
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement