Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SignInPageDescriptionText and Next/Back/Submit button alignment issue #55

Open
dianepana opened this issue Jul 3, 2019 · 4 comments
Open

Comments

@dianepana
Copy link

When switching to the paginated login screen, our description text displayed such that it was partially obscured by the Next button (and on the page to enter your password, by the Back and Sign In buttons).

broken

I solved the issue by taking the entire submissionArea div and reparenting it from the login form to the loginArea div.

fixed

This solution depends on the introduction div getting created on the page before the submissionArea div gets reparented, otherwise I suspect the buttons will appear above the sign-in page description text. Is there a different way to fix this?

@eizedev
Copy link

eizedev commented Apr 6, 2020

I solved the issue by taking the entire submissionArea div and reparenting it from the login form to the loginArea div.

@dianepana
Thanks for you reply, i have the same issue at the moment.
Would you be so kind and write me a little more detailed where exactly you moved the submissionArea div to? My CSS knowledge is available but only very limited ;-)

Thanks in advance

@alexmellott
Copy link

@dianepana Interested in seeing how you did this as well, my CSS knowledge is pretty poor.

@eigger1202
Copy link

@dianepana I would also like to know how you fixed your issue as well. We appreciate your help.

@adurham
Copy link

adurham commented Nov 14, 2023

Shamelessly stolen from chatGPT
// Assuming loginArea is the ID of the div where you want to reparent submissionArea
var loginAreaDiv = document.getElementById('loginArea');
var submissionAreaDiv = document.getElementById('submissionArea');

// This will move submissionAreaDiv from its current parent to be a child of loginAreaDiv
if (loginAreaDiv && submissionAreaDiv) {
loginAreaDiv.appendChild(submissionAreaDiv);
}
at the bottom of the JS file
NO idea if this is correct or not but seems to replicate what dianepana did

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants