• On line 476-ish of the css settings file, there needs to be a code tweak.
    /birds-custom-login/admin/settings/apply-css.php

               #login h1 a {
                    background-image: url("'.$logo.'");
                    -webkit-background-size: '.$logo_height.'px !important;
                    background-size: 100% !important;
    

    There needs to be an “!important” on the background-image. Otherwise if you use a favicon for the site (adding it through the customizer), it now overrides the logo in the birds plugin.

    It should look like this.

               #login h1 a {
                    background-image: url("'.$logo.'") !important;
                    -webkit-background-size: '.$logo_height.'px !important;
                    background-size: 100% !important;
    
  • The topic ‘CSS Tweak to override favicon’ is closed to new replies.