Viewing 2 replies - 1 through 2 (of 2 total)
  • Rhand

    (@rhand)

    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: https://www.ads-software.com/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

    Rhand

    (@rhand)

    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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Custom Login Page] Custom Logo Disappears With WordPress 3.3.1’ is closed to new replies.