How to center the login screen of a protected album?

Hi all,

how to center the login screen of a protected album?

best regards,
Oliver

Custom css.

this should do it. It may be unnecessarily specific. Then again, it might not be specific enough and affect other login areas you may have on the site.

#login #login-form fieldset p, #login-message p {
	text-align:center;
}

#login #login-form fieldset p input#login-password {
	margin: 0 auto;
}

Thank you Rod, but doesn’t work for me, it changes nothing. :thinking: hm

can you post a link?

Oh, it’s a Kookaburra album. That’s why the other css didn’t work. The structure is a bit different.

I’m able to center some parts, like the field and submit button. And that required changing the display to block from flex, which might mess up other things.
No luck centering the label yet.

@Matthew probably has better ideas.

Does this do what you want?

form#login {
  align-items: center;
  display: flex;
  flex-direction: column;
}
1 Like

Hi Matt,

that did it :+1:
Thank you very much!

Best regards,
Oliver