How do I fix this code error?

  • PranaHouse
    Asked on June 8, 2015 at 2:31 AM

    I was working on my form and wanting to make the form labels (i.e.. the questions) be in one line and so I went to Designer> Label style and changed the Label Width. That ended up not just fixing the labels, but made the fields super wide as well, and now even though I've changed the width back it seems stuck.

    There's a CSS error showing:

    How do I fix this code error? Image 1 Screenshot 20

     

    And a side issue created by whatever went wrong here is that my form is no longer transparent.

    Any suggestions?

  • ibrahim JotForm UI Developer
    Replied on June 8, 2015 at 2:43 AM

    Hi,

    You can inject CSS code to change ...

    inputs width value and sample code for your form :

     

    input[type=text], input[type=email], input[type=tel], textarea {

    width: 200px;

    }

    (You can change the value. (200px) )

    for background color and sample code for your form: 

     

     

    .supernova {

      background-color: transparent;

    }