Title: Dali_'s Replies | WordPress.org

---

# Dali_

  [  ](https://wordpress.org/support/users/dali_/)

 *   [Profile](https://wordpress.org/support/users/dali_/)
 *   [Topics Started](https://wordpress.org/support/users/dali_/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dali_/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dali_/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dali_/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dali_/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dali_/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Change the logo in the login screen](https://wordpress.org/support/topic/change-the-logo-in-the-login-screen/)
 *  Thread Starter [Dali_](https://wordpress.org/support/users/dali_/)
 * (@dali_)
 * [10 years ago](https://wordpress.org/support/topic/change-the-logo-in-the-login-screen/#post-7338261)
 * Thank you Anchises.
 * But the plugins are too laggy, so i found another way to change it.
 * This is how it works:
    Go to your “functions.php” , and put this in it
 *     ```
       function custom_login_logo() {
       ?>
       <style type="text/css">
       body.login div#login h1 a {
       background-image: url('YOUR LOGO URL');
       background-size: 289px 289px;
       height: 289px;
       width: auto;
       }
       </style>
       <?php
       } add_action( 'login_enqueue_scripts', 'custom_login_logo' );
       ```
   

Viewing 1 replies (of 1 total)