Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1395408

    Hi Support

    On th WooCommerce Login form, the «Show Password» Eye Icon is missing.
    Switching to Theme Twenty-Twenty, the Eye Icon appears.
    Any ideas?

    Look:
    Show-PW-Eye-Icon-ENFOLD-Bug

    Steve

    #1395515

    Hi Steve,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    .woocommerce form .password-input, 
    .woocommerce-page form .password-input {
        position: relative;
    }
    
    .woocommerce-page .woocommerce-form-login .show-password-input {
        position: absolute;
        top: 0.8rem;
        right: 1.2rem;
        cursor: pointer;
    }
    
    .woocommerce form .show-password-input::after, 
    .woocommerce-page form .show-password-input::after {
        font-family: WooCommerce;
        speak: never;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        margin-left: 0.618em;
        content: "\e010";
        text-decoration: none;
    }

    Please let us know if it helps.

    Best regards,
    Nikko

    #1395595

    HI Nikko

    Icon show up now, but below Entry field. Is it possible to place the Eye Icon into // or right the Input field? Not below.

    Thank you

    #1395605

    Hi Steve,

    Please replace this part of the code I gave:

    .woocommerce-page .woocommerce-form-login .show-password-input {
        position: absolute;
        top: 0.8rem;
        right: 1.2rem;
        cursor: pointer;
    }

    with:

    .woocommerce .woocommerce-form-login .show-password-input {
        position: absolute;
        top: 0.8rem;
        right: 1.2rem;
        cursor: pointer;
    }

    Best regards,
    Nikko

    #1395609

    Not working, now the Icon is on top instead in PW field.
    Gonna keep it below PW field, so its Mobile Ready like that

    Thank you
    Steve

    #1395638

    Hi Steve,

    I think you accidentally removed this code:

    .woocommerce form .password-input, 
    .woocommerce-page form .password-input {
        position: relative;
    }

    after that is re-added, you will need to adjust the top value of the previous code.

    Best regards,
    Nikko

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