Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #522246
    #522499

    Hey richardelectrix!

    Try adding this to your custom CSS.

    label[for="rememberme"] {
        position: absolute;
        bottom: 30px;
        left: 150px;
    }

    Regards,
    Elliott

    #522934

    That fixed the issue with the “Remember Me” clashing with “Login”, but it has messed the rest of the page up alignment wise.

    http://screencast.com/t/DtdjzkZkS

    #523407

    Hi!

    Add this to your style.css:

    .woocommerce form.login {
        padding-bottom: 25px !important;
    }

    Regarding the lost password text, modify the.lost_password code you already have in your style.css.

    Cheers!
    Josue

    #523570

    I have got it all lined up properly again but now the p.lost_password is clashing with the Login button when responsive…

    http://screencast.com/t/xn8WaRXGxxyF

    #523582

    Hey!

    Wrap all those codes with this:

    @media only screen and (min-width: 767px) {
    /* CODE HERE */
    }

    That way they only apply on desktop view, in mobile they will stack as default.

    Cheers!
    Josue

    #523586

    Hi

    They didnt stack as default which is why I had to implement the code.

    This is the code I am using currently which displays everything how I want it to display with the exception of the Lost Password clashing with the Login button.

    p.lost_password {
        position: relative;
        bottom: -6px;
        left: 150px;
    }
    
    /* Remember Me */
    label.inline {
        position: relative;
        bottom: -15px;
        left: 10px;
    }
    
    label[for="rememberme"] {
        position: absolute;
        bottom: 50px;
        left: 150px;
    }
    
    .woocommerce form.login {
        padding-bottom: 25px !important;
    }
    
    @media only screen and (max-width: 979px) {
    .woocommerce form.login {
        padding-bottom: 0px !important;
    }}
    
    @media only screen and (max-width: 979px) {
    p.lost_password {
        bottom: 18px;
        left: 10px;
        font-size: 13px;
    }}
    
    @media only screen and (max-width: 414px) {
    p.lost_password {
        bottom: 18px;
        left: 10px;
        font-size: 11px;
    }}
    
    /* Remember Me */
    @media only screen and (max-width: 979px) { 
    label.inline {
        display: none;
        visibility: hidden;
        position: relative;
        bottom: -50px;
        left: 6px;
    }}
    
    #524150

    with the exception of the Lost Password clashing with the Login button

    At what screen size?

    #524230

    I think about 900px wide

    #524504

    Hi!

    Change your 979px remember me code to this:

    
    /* Remember Me */
    @media only screen and (max-width: 979px) { 
    label.inline {
        display: none;
        position: relative;
        bottom: auto;
        left: 6px;
    }}

    Regards,
    Josue

    #532763

    Hi

    That doesnt work either.

    Now nearly all of the Login button is clashing with the Login button.

    http://screencast.com/t/pCpyRnRmN

    #532951

    Hey!

    Have you tried playing with the z-index values of the button and the remember me checkbox?

    I’d like to help you with this but your site is down right now.

    Cheers!
    Josue

    #533097

    Hi

    When you say the site is down do you mean the front end or the back end?

    Do you get any errors?

    #533147

    In the frontend:

    #533210

    Hi Josue

    Where are you viewing from?

    Thanks

    #533217

    Hey!

    You can see where we are located in here – http://kriesi.at/about

    Best regards,
    Yigit

    #533275

    Hi

    Please can you try to access the site again?

    Thanks

    #533330

    Add this:

    #customer_login input.button {
        z-index: 3;
        position: relative;
    }
    
    #customer_login p.lost_password {
        z-index: 1;
    }
    #533929

    Perfect – thanks

    #533936

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 20 posts - 1 through 20 (of 20 total)
  • You must be logged in to reply to this topic.