• Resolved sarahomega

    (@sarahomega)


    Hi,
    The position of the numbers is all weird.
    One time it’s all on top of input, sometimes all on bottom and sometimes is broken like in the image/link.

    How can I fix it? Or can you fix it so it’s always in the same line

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi!

    That behavior it’s normal. Not always is a normal operation like 4 + 5 = X (where X is the input that need to be fill by the user). Sometimes the plugin ask for X + 5 = 10, or 10 – X = 2.

    So in this way, the numbers and the input field need to be relocated.

    Thread Starter sarahomega

    (@sarahomega)

    Managed to fix this with FlexBox

    All of this can be played with to figure out the best solution for the user…

    /* Moves the fields so they’re in front of each other */
    #wpcaptcha-form {
    color: #fff;
    display: flex;
    gap: 5px;
    flex-direction: row;
    }
    /* Moves the numbers so they’re in front of each other */
    #wpcaptcha-form .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    }
    /* Moves the answer input so it’s always the 3rd. In the end. */
    #top #wrap_all #wpcaptcha-form .wpcf7-form-control {
    order: 3;
    width: 200px;
    }

    It’s very confusing that the numbers change place all the time.
    My suggestion is for the mistery number to be substituted by ‘?’ instead o an empty space.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Position of the Numbers’ is closed to new replies.