Center boxes on customer log in pages

Hi guys,

Website: seraneeva.com

How can I center the boxes on the customer log in, create account, and forgot your password pages? And how can I remove the words on the right side of the entries on the create account and forgot your password pages? Pic for reference:

Hello @flammagreg

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css

Step 3: Add code

#create_customer input, form[action="/account/recover"] input {
   margin-left: auto;
   margin-right: auto;
}

#create_customer label, form[action="/account/recover"] label{
  left: 120px;
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

1 Like

Could you do it for the log in page too?

Hi @flammagreg , Pls insert this code to your file css:

@media only screen and (min-width: 768px) {
  form#customer_login {
    width: 360px !important;
  }
    div#CustomerLoginForm {
      display: flex;
      justify-content: center;
    }
  }

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like