Add to functions.php:
1 2 3 4 5 6 7 8 9 10 |
function my_login_logo_one() { ?> <style type="text/css"> body.login div#login h1 a { background-image: url(http://localhost/wordpress/one.jpeg); //Add your own logo image in this url padding-bottom: 30px; } </style> <?php } add_action( 'login_enqueue_scripts', 'my_login_logo_one' ); |