Can you remove a border from an image at the top of the form?

  • andrewford
    Asked on August 5, 2015 at 11:52 PM

    I've read over 40 other questions and tried more ways than I care to count. This is frustrating as hell.

  • Boris
    Replied on August 6, 2015 at 1:11 AM

    Yes, this border can be removed. The reason that it appears is the theme that you are using - it sets a border around each form line, and this image counts as a line on the form.

    In your particular form case, you need to inject this CSS into your form:

    #cid_121 { border: 0 !important; }

    If you notice the number 121, that is the number of the form line we are targeting. It is a part of the field ID, so you can find out this number by following our guide on How to find Field IDs and Names.

    After injecting the above CSS into your form, it should appear like this:

    Can you remove a border from an image at the top of the form? Image 1 Screenshot 20

    Please let us know how it goes, or if you need any further assistance, and we will be happy to help.