Is It Possible to Add a Rounded-Cornered Border to the Form?

  • ssmediator
    Asked on October 19, 2015 at 4:27 AM

    is it possible to add a rounded-cornered border to the form? Color = #53391D

    Like the image...

  • mert JotForm UI Developer
    Replied on October 19, 2015 at 4:51 AM

    Hi,

    To add a border to your form, you need inject custom CSS code to your form. Below, you can find the necessary code to make border with color code #53391D.

    Red marked area represents the thickness level of border, you can adjust the px value from there and the blue marked area shows the color code. I added the color you want, but you can change its color.

     

    .form-all {

    border: 2px solid #53391D !important;

    }

     

    Also, you can find more information about CSS Border Properties from the following link:

    http://www.w3schools.com/css/css_border.asp

     

     

    After those changes, here is the final look of your form:

    Is It Possible to Add a Rounded Cornered Border to the Form? Image 1 Screenshot 20

     

    I hope this method will help you.

    For further assistance, please don't hesitate to contact us.

     

    Thanks.

  • Max
    Replied on October 19, 2015 at 11:28 AM
    Hi Mert. I think you forgot to include the CSS3 border-radius property for the rounded corners.
  • mert JotForm UI Developer
    Replied on October 19, 2015 at 11:38 AM

    Hi Max,

    Thanks for the recall. Yes, to make the edges more rounded  "border-radius: 25px !important;" CSS code could be added. 

    And the final look of the code should be like the below:

     

    .form-all {

    border:5px solid #53391D !important;

    border-radius: 25px !important;

    }

  • ssmediator
    Replied on October 20, 2015 at 3:17 AM

    THANK YOU BOTH!

  • mert JotForm UI Developer
    Replied on October 20, 2015 at 3:44 AM

    You are welcome. I'm glad to see that it is working for you.

    Please don't hesitate to contact us, if you need further help.

     

    Thanks.