• the login form and registration form both are become very narrow, log in stay the left side , registration stay right side
    I did asked help last time, but can’t fixed based on the last information

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @cbbr,

    Please add the below CSS.

    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1{max-width:100%}
    .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{max-width:100%}

    Please let me know if you have any queries.

    Thanks,

    Its your bootstrap.css causing issues. Currently this is the culprit:
    .col-1 {
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    }
    .col-2 {
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    }`

    Change it by adding this to your Theme CSS

    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    max-width: 48% !important;

    .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    max-width: 48% !important;
    }

    It should fix it ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘login/registration to my account page layout messed up’ is closed to new replies.