Logo no longer centered
-
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.
- The topic ‘Logo no longer centered’ is closed to new replies.