• Hey, just auto-updated to WordPress 6.7. Now the logo size on all the login pages is no longer correct, it’s a small 80×80 cube which invalidates my width-height settings.

    WordPress 6.7 introduced new CSS on the login page that adds these:

    • width: 84px;
    • height: 84px;
    • background-size: 84px;

    You’ll need to change your plugin code to force !important

    • background-size: $width $height !important;
    • width: $width !important;
    • height: $height !important;
  • You must be logged in to reply to this topic.