Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter cjwinternet

    (@cjwinternet)

    Further to this, this is the css that is affecting it…

    element.style {
    margin-bottom: 0;
    display: inline;
    font-size: 12px;
    width: 40px;
    }

    and…

    #review_form #respond input[type="text"] {
    display: block;
    height: auto;
    height: 43px;
    line-height: 43px;
    padding: 0px 10px 0px 43px;
    color: #a09b9b;
    }

    If I adjust the settings using ‘inspect element… the width is changed to say 60px, the captcha text and cursor becomes visible. Likewise, if the padding is reduced it’s visible. The large padding I guess is inherited from the other boxes somehow because they show an image.

    This is the css I have added to try and resolve…

    .cptch_block input[type="text"] {
        position: static !important;
        padding-left: 10px;
        width: 60px;
        padding: 0px 10px 0px 10px;
    }
    Thread Starter cjwinternet

    (@cjwinternet)

    Fixed it !…

    .cptch_block input[type="text"] {
        position: static !important;
        padding-left: 10px !important;
        width: 60px !important;
        padding: 0px 10px 0px 10px !important;
    }

    Needed the !important on each line.

    Hi,

    We are glad that your issue has been resolved. Please feel free to contact us with any questions in future on our support forum https://support.bestwebsoft.com/.

    Regards,
    BestWebSoft Support Team.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product Reviews – Cursor and input text not visible’ is closed to new replies.