• I’ve only just noticed this, so I’m not sure when this has changed, but the login logo is no longer centered.

    The plugin adds some CSS to wp-login.php

    .login h1 a {
    background: url(/wp-content/login-logo.png?v=XXXXXXXXXX) no-repeat top center;
    width: 312px;
    height: 91px;
    margin-left: 8px;
    padding-bottom: 16px;
    background-size: auto;
    -o-background-size: auto;
    -webkit-background-size: auto;
    -khtml-background-size: auto;
    -moz-background-size: auto;
    -ms-background-size: auto;
    }

    The css in the plugin needs to be updated to:

    width: 320px;
    margin-left: 0;

    I can add this to the sites I manage, but it would be great to have the plugin updated in the next version as I have a lot of sites with this plugin installed.

Viewing 1 replies (of 1 total)
  • I also noticed this annoying thing about the non-centered logo.
    For now the only solution that works for me is to manually edit the login-logo.php file contained in the plugin folder.
    I replaced the value 312 with 320 and set the margin-left: 0;

Viewing 1 replies (of 1 total)
  • The topic ‘Logo no longer centered’ is closed to new replies.