Injected css code to make border white on headings and it is not visible at all.

  • pardop1
    Asked on August 22, 2016 at 12:52 AM

    It's on this form https://form.jotform.com/62211613455952. I am sure there is another code in there that is causing the border not to be seen at all, but not sure how to fix. please make sure you keep the highlight effect of the fields on the form code in place otherwise you cannot see the fields when you are completing the form.

    Thanks,

    Pam

  • beril JotForm UI Developer
    Replied on August 22, 2016 at 3:49 AM

    To solve that issue you can inject the CSS code below:

    .form-header-group {

        border-color: #fff !important;

    }

    In addition to that, you need to uncheck the Hide bottom border option as you see below. At that time, it will work properly.

    Injected css code to make border white on headings and it is not visible at all Screenshot 20

     

    If you have any question or issues, please do not hesitate contacting us. We will be glad to assist you.

  • pardop1
    Replied on August 22, 2016 at 9:45 AM
    It is the top border i would like to see. I have happy with the bottom border being invisible. Please advise. The code did not make the top border white. It is still invisible.
    Thanks,
    Pam
    ...
  • jonathan
    Replied on August 22, 2016 at 10:10 AM

    Hi Pam,

    Can you please check this form https://form.jotform.com/62343792674969

    Injected css code to make border white on headings and it is not visible at all Screenshot 30

    I have used this CSS code.

    #id_1 {

        border-bottom : 2px solid;

    }

    Injected css code to make border white on headings and it is not visible at all Screenshot 41

     

    Is this how you wanted it to be?

    Describe more if its not so we can further work on it.

     

  • pardop1
    Replied on August 22, 2016 at 12:45 PM
    this is not correct and it should deb for all the headers on the form, not just the first one. It should look like the ones in this form https://form.jotform.com/62210966277964 (the forms look similar, but are no the same).
    ...
  • Charlie
    Replied on August 22, 2016 at 2:05 PM

    Here's my cloned form: https://form.jotform.com/62345856563969. Is that the border style you would like to implement?

    If so, please use this CSS code instead:

    div.form-header-group {

        border-top: #fff 1px solid !important;

    }

     

    Please do remove the previous CSS that my colleagues shared to avoid conflict. You can clone my form to have a copy of it in your account and to see how it was setup.

    Let us know if that works.