• Ok…updated to 3.8 and it wiped out my logo on the login page and put the new “wordpress blue” logo back in place. Usually I just go to the admin/images folder and swap out the wordpress-logo.png with my own and I am done. Now that is not working and the pesky WP logo displays no matter what I do. I like my clients to have their own logo on login page.

    Why did this get so difficult now??? LOL Any ideas???

    Thanks

    Mike

Viewing 3 replies - 1 through 3 (of 3 total)
  • try making a custom function in your functions.php

    // CUSTOM ADMIN LOGIN HEADER LOGO
    function my_custom_login_logo() {
        echo '<style type="text/css">
            .login h1 a { background-image:url('.get_bloginfo('template_directory').'/images/wp_sign-in_logo.png) !important;
    		              background-size:269px 62px;
    					  width:269px;
    					  height:62px; }
        </style>';
    }
    
    add_action('login_head', 'my_custom_login_logo');
    Thread Starter mike-logan

    (@mike-logan)

    Ok…I am not a code guy so are you saying just paste what you printed above into functions.php and then just change the location of the image?

    Do you know why they made this so difficult for the average user? Sometimes I think people forget that WP is suppose to be an easy way to develop good websites and blogs and that not everybody is a coding/php expert!!!

    Thank you for your quick responce 😉

    Mike

    If you don’t want to deal with code, there are several plugins that you can use:

    1) http://wordpress.org/plugins/login-logo/
    2) http://wordpress.org/plugins/uber-login-logo/
    3) http://wordpress.org/plugins/custom-login-logo/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Logo On Login Page?’ is closed to new replies.