Hello @jasperdemann
You can adjust the size and positioning of the “You are already logged in…” message box in mobile device using the following CSS and JavaScript:
CSS:
@media (max-width: 767px) {
.eael-lr-form-wrapper.style-2 {
text-align: center;
display: block !important;
}
}
JavaScript (jQuery required):
jQuery(document).ready(function($) {
var loginMessage = $('.eael-login-form-wrapper').html();
loginMessage = loginMessage.replace(/\s*(<br\s*\/?>)/, '$1');
$('.eael-login-form-wrapper').html(loginMessage);
});
This will center the message box on smaller screens and ensure that unnecessary whitespace is removed. See the screenshot here: https://d.pr/i/FuohMx
Let me know if you need any adjustments!
Thank you