Form text and input checkboxes are white and not visable

  • dclngoi
    Asked on June 8, 2020 at 6:25 AM

    Hi, without resetting the font colour or the colour of ticks for checkbox, the text entered is white in colour which is invisible as background colour is white as well.

    I have another question. The form name couldn't be renamed even after renaming it. 

    Please advise.

    Many thanks,

    David

  • Bojan Support Team Lead
    Replied on June 8, 2020 at 9:16 AM

    Greetings David.

    Thank you for your message.

    The problem is probably in the selected theme. To resolve the problem, please add the following CSS to your form:

    .form-textbox, .form-textarea {
        color: #000;
    }
    .form-radio-item:not(#foo) label:after {
        background-color: #000;
    }

    To see how to inject custom CSS, please click here.

    Please let us know if this resolved your problem.

    Thank you for your cooperation. 

  • dclngoi
    Replied on June 8, 2020 at 9:39 AM

    Hi, the code works for the form but it only works partially for another as follows. Please advise.

    https://www.jotform.com/build/201491126248451#preview

    1591623436Screenshot 2020 06 08 at 9 Screenshot 101591623460Screenshot 2020 06 08 at 9 Screenshot 21

  • Bojan Support Team Lead
    Replied on June 8, 2020 at 11:06 AM

    Thank you for your reply.

    To resolve this problem, please add the following CSS underneath your current one:

    .form-checkbox-item:not(#foo) label:after {
      background-color: #000;
      box-shadow: 0 3px 0 0 #000000, 3px 3px 0 0 #000000, 6px 3px 0 0 #000000, 9px 3px 0 0 #000000, 8px 6px 0 0 #ffffff00, 10px 1px 0 0 #18212c00;
    }

    Let us know if there is anything else we can help you with. 

  • dclngoi
    Replied on June 8, 2020 at 12:47 PM

    It works! Many thanks