How to add a custom logo in your WP login page
In this wicket tutorial you don't need to use plug-ins or hardcoding any php files.
Changing your logo in Classipress Setting page is NOT enough. You need to change the logo in the login page also. Why?
Because when your users try to recover their password, they will be directed to
wp login page.
Let's do it!
Find and edit the
login.css file found in (
wordpress folder)/wp-admin/css/
Code:
{background:url(../images/logo-login.png) no-repeat top center;width:326px;height:67px;text-indent:-9999px;overflow:hidden;padding-bottom:15px;display:block;}
replace with
Code:
{background:url(put_the_url_of_your_logo_file_here) no-repeat top center;width:none;height:67px;text-indent:-9999px;overflow:hidden;padding-bottom:15px;display:block;}
That's it! Enjoy guys!
Found in WP forum: http://wordpress.org/support/topic/c...he-log-in-page