Skip to content

Instantly share code, notes, and snippets.

@techirsh
Last active April 27, 2016 15:14
Show Gist options
  • Save techirsh/bf61621f713166177e5f7f334ac3e5ac to your computer and use it in GitHub Desktop.
Save techirsh/bf61621f713166177e5f7f334ac3e5ac to your computer and use it in GitHub Desktop.
<?php
function my_custom_login_logo()
{
echo '<style type="text/css">
h1 a { display:none !important; }
body { background:#674172 !important;}
.login #backtoblog a, .login #nav a {color:white !important;}
wp-core-ui .button-primary {
background: #674172 !important;
color: #FFF;
text-decoration: none;
border: none !important;
border-radius:0px !important;}
</style>';
}
add_action('login_head', 'my_custom_login_logo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment