Custom WordPress Login Page
Fancy changing your WP logon page?
Just add the following code to your functions.php, make sure you adjust the heigh/width & size to your match your image and change the background to your colour of choice (#000) & (#333) in this case.
Always best to make a back up first!
function qot_login() {
echo ‘<style type=”text/css”>
.login h1 a {
background-image:url( “http://path/to/png” ) !important;
height: 180px !important; width: 135px !important;
background-size: 180px auto !important;
}
body { background: #000; }
.login form { background: #333; }
</style>’;
}
add_action(‘login_head’, ‘qot_login’);