• Resolved qwik3r

    (@qwik3r)


    How do you vertically center the form? In your premium demos it shows the forum vertically centered. The default form is close to the top. I know you can add padding to move it down but wondering if you’re using another method to get it dead center in the screen depending on resolution.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hello, @qwik3r

    Thank you for your feedback. We’re going to make an update for LoginPress and also add this point to the roadmap. We’ll send an update in a couple of days. ??

    Thank you.
    Regards,
    Abdul Wahab.

    Hello,

    What was the fix for this issue ?

    Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hi, @exe65

    Sorry for the responding late, just missed it. @qwik3r and @exr65 You just need to add the following snippet of code in LoginPress -> Customizer -> Custom CSS/JS -> Custom CSS for vertically centering the form. Helping Screenshot

    body.login{
      display: block !important;
    }
    #login {
          position: absolute !important;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          margin-top: 0 !important;
    }

    Hopefully, it’ll work for you. Feel free to contact in any query.
    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Vertically center’ is closed to new replies.