Howdy,
On all client sites (about 5 or 6) where I have used the plugin to display a custom logo, the sites have reverted to the standard WP login page logo - my logos no longer appear.
I have version 2.0 of the plugin installed in all cases.
Howdy,
On all client sites (about 5 or 6) where I have used the plugin to display a custom logo, the sites have reverted to the standard WP login page logo - my logos no longer appear.
I have version 2.0 of the plugin installed in all cases.
Same her. I believe it is because of a last minute CSS change in WordPress 3.3.1 . Another custom login page plugin got it fixed: http://wordpress.org/support/topic/custom-login-does-not-work-on-33?replies=22 I will see if I can patch the plugin with a CSS change as well
Line 417 had
if(empty($dd_login_logo)){$dd_log_logo = "";}else{$dd_log_logo = ".login h1 a {background: url(".$dd_login_logo.") no-repeat top center;width: 326px;height: 67px;text-indent: -9999px;overflow: hidden;padding-bottom: 15px;display: block;}";};
should have
if(empty($dd_login_logo)){$dd_log_logo = "";}else{$dd_log_logo = ".login h1 a {background: url(".$dd_login_logo.") no-repeat top center;width: 326px;height: 67px;text-indent: -9999px;overflow: hidden;padding-bottom: 15px;display: block;}";};
As skriftklog said h1 a should be changed to .login h1 a
You must log in to post.