It would be helpful if you posted a link to the site so we can examine that page for errors.
sure, here’s the page, and probably the culprit is a AIO login plugin… still investigating
It looks like the language switcher is your problem. You can delete those elements and then the login page looks as expected
Namely, this CSS is problematic. The auto margin is pushing the login form left
.language-switcher {
margin: 0 auto;
}
The issue is caused by the styles included with the “All in One Login” plugin. These styles turn the page into a flexbox, causing the two sections to appear side by side.
The plugin was updated just yesterday, and it looks like you’ve installed that update as well. This might be related to it.
Deactivate the plugin and contact their support forum if you have any questions: https://ww.wp.xz.cn/support/plugin/change-wp-admin-login/
Definitely it is the AIO plugin and the style it uses if you check on devtools
body.login.aio-login__template-03 {
- background: #f0f0f1;
- display: flex;
- align-items: center;
- justify-content: center;
- min-height: 100vh;
}
-
This reply was modified 1 month ago by
Mehdi.
Thank you for the tips. I have informed the plugin author who has released a fix. I also had to rewrite the htaccess which was somehow corrupted, and now it’s resolved. 🙂