Question about "Changing Password" [RESOLVED]

Hello,

For the fields of changing password, is there any way to move the “Confirm Password” to a new line?

For details, the following picture shows that the “Enter Password” and “Confirm Password” are shown as left-and-right. However, I would love move the “Confirm Password” to a new system. Is it possible?

image

Thank you

If you share a link to the page on your site where we can see the form, we may be able to help you with some CSS to do that. Thank you.

Here is the url of the form, thank you!

Hello. You can add this CSS to your theme (or child theme) stylesheet or via the Appearance Customizer (Appearance > Customize > Additional CSS):

body .gform_wrapper span#input_16_2_1_container {
  width: 100%;
  padding-right: 0;
}
body .gform_wrapper span#input_16_2_2_container  {
  width: 100%;
  padding-left: 0;
  padding-top: 20px;
}

That made the form look like this to me: https://d.pr/i/00pUXH

If you have any other questions about the layout, please let us know.

Thank you very much for the CSS! It works! The problem is solved!

1 Like