Changing the color of the required symbol and enlarging the submit button

  • strtch007
    Asked on May 22, 2017 at 2:52 PM

    https://form.jotform.us/71395502884160

     

    Is there a way to change the color of the red asterisks to blue

    Lastly is there a way to enlarge the Button to double the current size 

     

  • Jan
    Replied on May 22, 2017 at 4:29 PM

    Please inject this custom CSS in order to change the (required symbol *) to blue:

    .form-required {
    color: #203668;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:Changing the color of the required symbol and enlarging the submit button Image 1 Screenshot 30

     

    Lastly is there a way to enlarge the Button to double the current size 

    The submit button is an image file. You need to use a photo editor to increase the width of the image. You may also increase it via CSS, however, the resolution will be affected. Here's the CSS code to increase the width of the image submit button:

    #input_43 img {
    width: 400px;
    }

    Here's the result:

    Changing the color of the required symbol and enlarging the submit button Image 2 Screenshot 41

    Hope that helps. Thank you.

  • strtch007
    Replied on May 22, 2017 at 5:43 PM
    thank you so much !!
    ...