• Resolved owsd

    (@owsd)


    Hello,

    I have very annoying problem and im not able to solve it by myself.

    On website that im currently working on Login/Register page looks really bad. Content is stretched, also, columns are not even. Above all, when i check it on mobile, columns are not wrapping, its stretching even more on mobile.

    Tried to find in code what element is coursing problem but im too dumb i guess tu understand CSS (if this is CSS problem).

    Any help or hint is appreciated,

    Best,
    Jakub

    • This topic was modified 3 years, 10 months ago by owsd.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try this custom css:

    #customer_login .col-1,
    #customer_login .col-2 {
      width: 50%;
    }
    @media screen and (max-width: 1023px) {
      #customer_login {
        display: block !important;
      }
      #customer_login>* {
        flex: none !important;
      }
      #customer_login .col-1,
      #customer_login .col-2 {
        width: 100%;
        padding: 0 !important;
      }
      #customer_login>:first-child {
        border-right-width: 0 !important;
      }
    }

    Custom CSS can be entered at:
    Dashboard > Appearance > Customize > Additional CSS

    Thread Starter owsd

    (@owsd)

    Works perfectly! Thank you! You’re god send!

    Btw, its about time I start learning CSS, HTML is not enough to build good websites these days :/

    Have a great day!

    Best,
    Jakub

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Login/Register page problem’ is closed to new replies.