2 columns my account page

Hello,

When a guest visits My Account page, the login form is on top, and the registration form in below it.

How can I make it look like 2 columns? So, the login form be on left, and the registration form be on right and a line between them to separate them.

Thanks

Hello @Dadparvar,

Thanks for writing in!

To resolve your issue and make your account page in two columns, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

 .u-column1.col-1 {}

#customer_login {
    display: block;
}

#customer_login .col-1,
#customer_login .col-2 {
    width: 48%;
    float: left;
    margin-right: 4%;
}

#customer_login .col-2 {
    margin-right: 0;
}

We would loved to know if this has work for you. Thank you.

1 Like

Worked like a charm!

Thanks

You’re welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.