
Logon CSS
By: a guest on
May 20th, 2012 | syntax:
PHP | size: 0.45 KB | hits: 26 | expires: Never
<?php
/*
Plugin Name: Logon CSS
Plugin URI: http://wordpress.org/support/topic/plugin-semisecure-login-reimagined-how-to-change-login-page-text-color
Description: Add some css to the logon screen
Author: Cubecolour
Version: 1.0
Author URI: http://cubecolour.co.uk/
License: GPL2
*/
add_action('login_head', 'my_custom_login_css');
function my_custom_login_css() {
echo '<style type="text/css">#semisecure-message {color: #ccc;}
</style>';
}